Skip to content

Commit

Permalink
fix build-wasm-simd-image-from-tag.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gjermundgaraba authored Jan 25, 2025
1 parent fd79f13 commit e649231
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-wasm-simd-image-from-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -64,15 +64,15 @@ 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

merge:
runs-on: ubuntu-latest
needs:
- build
- build-image-at-tag
steps:
- name: Download digests
uses: actions/download-artifact@v4
Expand Down

0 comments on commit e649231

Please sign in to comment.