Skip to content

Commit f6c3227

Browse files
authored
Fix the Publish workflow (#456)
1 parent 652fde8 commit f6c3227

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
python -m build
1717
- uses: actions/upload-artifact@v6
1818
with:
19+
name: dist
1920
path: ./dist
2021

2122
pypi-publish:
@@ -28,7 +29,10 @@ jobs:
2829
id-token: write
2930
steps:
3031
- uses: actions/download-artifact@v7
32+
with:
33+
name: dist
34+
path: dist/
3135
- name: Publish package distributions to PyPI
3236
uses: pypa/gh-action-pypi-publish@release/v1
3337
with:
34-
packages_dir: artifact/
38+
packages-dir: dist/

0 commit comments

Comments
 (0)