Skip to content

Commit

Permalink
EditWorkFlow
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderJuestel committed Oct 4, 2023
1 parent e730006 commit d7a88bb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pypi_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ jobs:
runs-on: ubuntu-latest

steps:

# Need the tags so that setuptools-scm can form a valid version number
- name: Fetch git tags
run: git fetch origin 'refs/tags/*:refs/tags/*'

- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
Expand All @@ -28,5 +33,6 @@ jobs:
TWINE_USERNAME: ${{ secrets.PYPI_USERS }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
python -m build
#python setup.py sdist bdist_wheel
twine upload dist/*

0 comments on commit d7a88bb

Please sign in to comment.