Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
koehlma committed May 8, 2024
1 parent b9da01d commit d030f63
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,16 @@ jobs:
org.opencontainers.image.vendor=Silitics GmbH
build_bakery_images:
name: "Build Bakery Image (${{ matrix.platform }})"
name: "Build Bakery Image (${{ matrix.arch }})"
runs-on: ubuntu-latest
needs:
- bakery_metadata
- build_binaries
strategy:
matrix:
platform:
- linux/amd64
- linux/arm64
arch:
- amd64
- arm64
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -118,7 +118,7 @@ jobs:
done
find .
- name: Set up QEMU
if: ${{ matrix.platform != 'linux/amd64' }}
if: ${{ matrix.arch != 'amd64' }}
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand All @@ -134,7 +134,7 @@ jobs:
with:
context: .
file: bakery/Dockerfile
platforms: ${{ matrix.platform }}
platforms: linux/${{ matrix.arch }}
labels: ${{ needs.bakery_metadata.outputs.labels }}
push: true
tags: ${{ env.IMAGE_NAME }}
Expand All @@ -153,7 +153,7 @@ jobs:
- name: Upload Digest
uses: actions/upload-artifact@v4
with:
name: bakery-digest-${{ matrix.platform }}
name: bakery-digest-${{ matrix.arch }}
path: /tmp/digests/*
if-no-files-found: error
retention-days: 2
Expand Down

0 comments on commit d030f63

Please sign in to comment.