From e649231295bcd27da1c2b3b51b4b1b5d3ad6de13 Mon Sep 17 00:00:00 2001 From: Gjermund Garaba Date: Sat, 25 Jan 2025 16:05:14 +0100 Subject: [PATCH] fix build-wasm-simd-image-from-tag.yml --- .github/workflows/build-wasm-simd-image-from-tag.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-wasm-simd-image-from-tag.yml b/.github/workflows/build-wasm-simd-image-from-tag.yml index c85c210950e..5d72a0d1c9a 100644 --- a/.github/workflows/build-wasm-simd-image-from-tag.yml +++ b/.github/workflows/build-wasm-simd-image-from-tag.yml @@ -18,12 +18,12 @@ jobs: strategy: fail-fast: false matrix: - build: + include: - os: ubuntu-latest platform: linux/amd64 - os: macos-latest platform: linux/arm64 - runs-on: {{ matrix.build.os }} + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 with: @@ -50,7 +50,7 @@ jobs: id: build uses: docker/build-push-action@v6 with: - platforms: ${{ matrix.build.platform }} + platforms: ${{ matrix.platform }} file: modules/light-clients/08-wasm/Dockerfile build-args: LIBWASM_VERSION=${{ env.LIBWASM_VERSION }} outputs: type=image,"name=${{ env.REGISTRY }}/${{ env.ORG }}/${{ env.IMAGE_NAME }}",push-by-digest=true,name-canonical=true,push=true @@ -64,7 +64,7 @@ jobs: - name: Upload digest uses: actions/upload-artifact@v4 with: - name: digests-${{ matrix.build.os }} # If we end up running more builds on the same OS, we need to differentiate more here + name: digests-${{ matrix.os }} # If we end up running more builds on the same OS, we need to differentiate more here path: ${{ runner.temp }}/digests/* if-no-files-found: error retention-days: 1 @@ -72,7 +72,7 @@ jobs: merge: runs-on: ubuntu-latest needs: - - build + - build-image-at-tag steps: - name: Download digests uses: actions/download-artifact@v4