From 974f4ac27647c4754ba9fc2871f4971511fcf332 Mon Sep 17 00:00:00 2001 From: Etienne Wodey <44871469+airwoodix@users.noreply.github.com> Date: Mon, 16 Dec 2024 19:33:13 +0100 Subject: [PATCH] workflows/release: fix missing artifacts downloads (#208) --- .github/workflows/release.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index af0cc70..bc99db3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,6 +36,7 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v4 with: + name: release_artifacts path: | ./dist/qiskit* RELEASE_CHANGELOG.txt @@ -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: @@ -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