Skip to content

Commit ccbb1d7

Browse files
Merge pull request #14 from praveen-palanisamy/fix-github-action
Fixed typo in github actions
2 parents 1434da2 + 82998cf commit ccbb1d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish-to-pypi-test-net.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build & Publish Python 🐍 package 📦 to TestPyPI & PyPI
1+
name: PyPI
22
on:
33
release:
44
types: [created]
@@ -19,11 +19,11 @@ jobs:
1919
run: |
2020
python setup.py sdist bdist_wheel
2121
- name: Publish distribution 📦 to Test PyPI
22-
uses: pypa/gh-action-pypi-publisher@master
22+
uses: pypa/gh-action-pypi-publish@master
2323
with:
2424
password: ${{ secrets.TEST_PYPI_API_TOKEN}}
2525
repository_url: https://test.pypi.org/legacy
2626
- name: Publish distribution 📦 to PyPI
27-
uses: pypa/gh-action-pypi-publisher@master
27+
uses: pypa/gh-action-pypi-publish@master
2828
with:
2929
password: ${{ secrets.PYPI_API_TOKEN}}

0 commit comments

Comments
 (0)