Skip to content

Commit

Permalink
Merge branch 'hotfix/publish-job'
Browse files Browse the repository at this point in the history
  • Loading branch information
SkypLabs committed Mar 16, 2022
2 parents c6acc49 + 673fa8a commit 453ea26
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install --upgrade setuptools wheel twine build
- name: Build and publish
env:
TWINE_USERNAME: '__token__'
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python setup.py sdist bdist_wheel
python -m build
twine upload --repository testpypi dist/*
publish-to-pypi:
Expand All @@ -108,12 +108,12 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install --upgrade setuptools wheel twine build
- name: Build and publish
env:
TWINE_USERNAME: '__token__'
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python setup.py sdist bdist_wheel
python -m build
twine upload dist/*
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = faker_wifi_essid
version = 0.4.0
version = 0.4.1
description = Faker provider for Wi-Fi ESSIDs.
long_description = file: README.rst
keywords = faker, faker-library, faker-provider, faker-generator, wifi, essid
Expand Down

0 comments on commit 453ea26

Please sign in to comment.