Skip to content

Commit

Permalink
Merge pull request #12 from arangoml/workflow-patch
Browse files Browse the repository at this point in the history
Update release.yml
  • Loading branch information
cw00dw0rd authored Sep 21, 2022
2 parents a3676a3 + 22121d5 commit 752b8c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,18 +77,18 @@ jobs:
run: rm -rf dist

- name: Build distribution
run: conda run -n ${{ matrix.python }} python setup.py sdist bdist_wheel
run: conda run -n 3.8 python setup.py sdist bdist_wheel

- name: Publish to Test PyPi
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD_TEST }}
run: conda run -n ${{ matrix.python }} twine upload --repository testpypi dist/* #--skip-existing
run: conda run -n 3.8 twine upload --repository testpypi dist/* #--skip-existing
- name: Publish to PyPi
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
run: conda run -n ${{ matrix.python }} twine upload --repository pypi dist/* #--skip-existing
run: conda run -n "3.8" twine upload --repository pypi dist/* #--skip-existing

changelog:
needs: release
Expand Down

0 comments on commit 752b8c8

Please sign in to comment.