Skip to content

Commit

Permalink
FIXUP: Specify platform by full name
Browse files Browse the repository at this point in the history
  • Loading branch information
apyrgio committed Mar 10, 2025
1 parent bb66e9a commit f1702ab
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,16 @@ jobs:
build:
name: Build ${{ matrix.platform.name }} image
runs-on: ubuntu-24.04${{ matrix.platform.suffix }}
runs-on: ${{ matrix.platform.runs-on }}
needs:
- prepare
strategy:
fail-fast: false
matrix:
platform:
- suffix: ""
- runs-on: "ubuntu-24.04"
name: "linux/amd64"
- suffix: "-arm"
- runs-on: "ubuntu-24.04-arm"
name: "linux/arm64"
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -218,14 +218,14 @@ jobs:
needs:
- prepare
- merge
runs-on: ubuntu-24.04${{ matrix.platform.suffix }}
runs-on: ${{ matrix.platform.runs-on }}
strategy:
fail-fast: false
matrix:
platform:
- suffix: ""
- runs-on: "ubuntu-24.04"
name: "amd64"
- suffix: "-arm"
- runs-on: "ubuntu-24.04-arm"
name: "arm64"
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit f1702ab

Please sign in to comment.