Skip to content

Commit 974f4ac

Browse files
authored
workflows/release: fix missing artifacts downloads (#208)
1 parent 06c5e31 commit 974f4ac

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
- name: Upload artifacts
3737
uses: actions/upload-artifact@v4
3838
with:
39+
name: release_artifacts
3940
path: |
4041
./dist/qiskit*
4142
RELEASE_CHANGELOG.txt
@@ -48,6 +49,10 @@ jobs:
4849
contents: write
4950
runs-on: ubuntu-latest
5051
steps:
52+
- name: Download release artifacts
53+
uses: actions/download-artifact@v4
54+
with:
55+
name: release_artifacts
5156
- name: Create Github release
5257
uses: softprops/action-gh-release@v1
5358
with:
@@ -62,5 +67,9 @@ jobs:
6267
id-token: write
6368
runs-on: ubuntu-latest
6469
steps:
70+
- name: Download release artifacts
71+
uses: actions/download-artifact@v4
72+
with:
73+
name: release_artifacts
6574
- name: Publish to PyPI
6675
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)