Skip to content

Commit b3e3e81

Browse files
committed
fix workflow
1 parent 2e30d2c commit b3e3e81

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

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

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ jobs:
1616
submodules: true
1717
fetch-depth: 0
1818

19+
- name: Download built dist
20+
uses: actions/download-artifact@v3
21+
with:
22+
name: built-dist
23+
path: dist/
24+
1925
- name: Setup submodules
2026
run: |
2127
git config --global --add safe.directory '*'
@@ -90,7 +96,7 @@ jobs:
9096
permissions:
9197
id-token: write # required for trusted publishing
9298
steps:
93-
- name: Publish to PyPI
94-
uses: pypa/gh-action-pypi-publish@release/v1
95-
with:
96-
skip-existing: false
99+
- name: Publish to PyPI
100+
uses: pypa/gh-action-pypi-publish@release/v1
101+
with:
102+
skip-existing: false

0 commit comments

Comments
 (0)