Skip to content

Commit

Permalink
workflows/release: fix missing artifacts downloads (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
airwoodix authored Dec 16, 2024
1 parent 06c5e31 commit 974f4ac
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: release_artifacts
path: |
./dist/qiskit*
RELEASE_CHANGELOG.txt
Expand All @@ -48,6 +49,10 @@ jobs:
contents: write
runs-on: ubuntu-latest
steps:
- name: Download release artifacts
uses: actions/download-artifact@v4
with:
name: release_artifacts
- name: Create Github release
uses: softprops/action-gh-release@v1
with:
Expand All @@ -62,5 +67,9 @@ jobs:
id-token: write
runs-on: ubuntu-latest
steps:
- name: Download release artifacts
uses: actions/download-artifact@v4
with:
name: release_artifacts
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 974f4ac

Please sign in to comment.