Skip to content

Commit 462a340

Browse files
authored
Uncomment artifact download step in workflow
1 parent ff29e54 commit 462a340

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -91,23 +91,23 @@ jobs:
9191
id-token: write
9292

9393
steps:
94-
# - name: Download distribution artifacts
95-
# uses: actions/download-artifact@v4
96-
# with:
97-
# name: python-package-distributions
98-
# path: dist/
94+
- name: Download distribution artifacts
95+
uses: actions/download-artifact@v4
96+
with:
97+
name: python-package-distributions
98+
path: dist/
9999

100100
- name: Installer
101101
run: |
102-
python -m pip install --upgrade pip
103-
pip install setuptools wheel twine
104-
102+
python -m pip install --upgrade pip
103+
pip install setuptools wheel twine
104+
105105
- name: Publish package to PyPI
106106
env:
107107
TWINE_USERNAME: __token__
108108
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
109109
run: |
110-
twine upload dist/*
110+
twine upload dist/*
111111
112112
create-github-release:
113113
needs: publish-to-pypi

0 commit comments

Comments
 (0)