From 7cc36c04b9267c7ad8e37d04f97ff716cd3a097b Mon Sep 17 00:00:00 2001 From: filipecosta90 Date: Sun, 24 Nov 2024 21:45:31 +0000 Subject: [PATCH] Using actions/download-artifact@v3 for release smoke test --- .github/workflows/release.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b585484..414dc00 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -139,7 +139,15 @@ jobs: exit 1 fi echo "BUILD_ARCH=$BUILD_ARCH" >> $GITHUB_ENV - - name: Get binary packages + - name: Get binary packages for ubuntu:bionic + if: matrix.image == 'ubuntu:bionic' + uses: actions/download-artifact@v3 + with: + name: binary-${{ env.BUILD_ARCH }}-${{ env.ARCH }} + path: binary-${{ env.BUILD_ARCH }}-${{ env.ARCH }} + + - name: Get binary packages for other versions + if: matrix.image != 'ubuntu:bionic' uses: actions/download-artifact@v4 with: name: binary-${{ env.BUILD_ARCH }}-${{ env.ARCH }}