We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2dfe74 commit 89d27b9Copy full SHA for 89d27b9
1 file changed
.github/workflows/publish.yml
@@ -5,7 +5,7 @@ on:
5
6
jobs:
7
publish:
8
- name: Publish Python 🐍 distributions 📦 to TestPyPI
+ name: Publish Python 🐍 distributions 📦 to PyPI
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@master
@@ -40,12 +40,11 @@ jobs:
40
run: >-
41
python -m
42
pip install build --user
43
- - name: Build a binary wheel and a source tarball
+ - name: Build a source tarball
44
45
46
build --sdist --outdir dist/ .
47
- name: Publish distribution 📦 to Test PyPI
48
uses: pypa/gh-action-pypi-publish@master
49
with:
50
- password: ${{ secrets.TEST_PYPI_API_TOKEN }}
51
- repository_url: https://test.pypi.org/legacy/
+ password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments