Skip to content

Commit

Permalink
Update pypi-publish-action to non-alpha release (#834)
Browse files Browse the repository at this point in the history
* Update gh-action-pypi-publish to a stable non-alpha release (v1.1.0)
  • Loading branch information
matthewfeickert authored Apr 22, 2020
1 parent 4c966fc commit 1633787
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ jobs:
- name: Publish distribution 📦 to Test PyPI
# every PR will trigger a push event on master, so check the push event is actually coming from master
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'scikit-hep/pyhf'
uses: pypa/gh-action-pypi-publish@v1.0.0a0
uses: pypa/gh-action-pypi-publish@v1.1.0
with:
password: ${{ secrets.test_pypi_password }}
repository_url: https://test.pypi.org/legacy/
- name: Publish distribution 📦 to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') && github.repository == 'scikit-hep/pyhf'
uses: pypa/gh-action-pypi-publish@v1.0.0a0
uses: pypa/gh-action-pypi-publish@v1.1.0
with:
password: ${{ secrets.pypi_password }}

0 comments on commit 1633787

Please sign in to comment.