Skip to content

Commit c2cdf80

Browse files
committed
Fix action version in new workflow.
1 parent 3f3097b commit c2cdf80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/master.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
path: dist/
4242

4343
- name: Publish to Test PyPI
44-
uses: pypa/gh-action-pypi-publish@releases/v1
44+
uses: pypa/gh-action-pypi-publish@release/v1.8.12
4545
with:
4646
user: __token__
4747
password: ${{ secrets.TEST_PYPI_TOKEN }}
@@ -69,12 +69,12 @@ jobs:
6969
echo "::set-output name=RELEASE_VERSION::$version"
7070
7171
- name: Publish to PyPI
72-
uses: pypa/gh-action-pypi-publish@releases/v1
72+
uses: pypa/gh-action-pypi-publish@release/v1.8.12
7373
with:
7474
user: __token__
7575
password: ${{ secrets.PYPI_TOKEN }}
7676
repository_url: https://upload.pypi.org/legacy/
77-
skip_existing: true
77+
skip_existing: false
7878

7979
- name: Set up Git
8080
run: |

0 commit comments

Comments
 (0)