Skip to content

Commit

Permalink
chnage ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandergagliano committed Apr 23, 2024
1 parent 66fc27d commit 746f6fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_to_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
pip install setuptools wheel twine
- name: Build and Publish Package
env:
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
if [[ $GITHUB_REF == refs/tags/* ]]; then
python setup.py egg_info -Db "" sdist bdist_wheel
Expand All @@ -34,6 +37,3 @@ jobs:
python setup.py sdist bdist_wheel
twine upload dist/* --repository testpypi
fi
env:
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}

0 comments on commit 746f6fb

Please sign in to comment.