Skip to content

Commit

Permalink
Fix action version in new workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
runemalm committed Mar 2, 2024
1 parent 3f3097b commit c2cdf80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
path: dist/

- name: Publish to Test PyPI
uses: pypa/gh-action-pypi-publish@releases/v1
uses: pypa/gh-action-pypi-publish@release/v1.8.12
with:
user: __token__
password: ${{ secrets.TEST_PYPI_TOKEN }}
Expand Down Expand Up @@ -69,12 +69,12 @@ jobs:
echo "::set-output name=RELEASE_VERSION::$version"
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@releases/v1
uses: pypa/gh-action-pypi-publish@release/v1.8.12
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
repository_url: https://upload.pypi.org/legacy/
skip_existing: true
skip_existing: false

- name: Set up Git
run: |
Expand Down

0 comments on commit c2cdf80

Please sign in to comment.