Skip to content

Commit

Permalink
Merge pull request #4 from jelitox/main
Browse files Browse the repository at this point in the history
Fix on  pipeline for pypi deployment
  • Loading branch information
phenobarbital authored Mar 3, 2022
2 parents 9998303 + 922d9e5 commit d561552
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
--sdist
--wheel
--outdir dist/
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.NAVCONFIG_TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.NAVCONFIG_PYPI_API_TOKEN }}
password: ${{ secrets.NAVCONFIG_PYPI_API_TOKEN }}
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.NAVCONFIG_TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/

0 comments on commit d561552

Please sign in to comment.