Skip to content

Commit

Permalink
Bugfix: fix platforms to remove slash
Browse files Browse the repository at this point in the history
  • Loading branch information
myoung34 committed Sep 5, 2024
1 parent 1ec6d38 commit 78d8042
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
release: [jammy, focal, noble]
platform: [linux/amd64, linux/arm64]
platform: [amd64, arm64]
fail-fast: false
steps:
- name: Copy Repo Files
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
push: false
load: true
tags: ${{ env.GH_RUNNER_IMAGE }}
platforms: ${{ matrix.platform }}
platforms: linux/${{ matrix.platform }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Run goss tests
Expand All @@ -69,7 +69,7 @@ jobs:
strategy:
matrix:
release: [bookworm, sid]
platform: [linux/amd64, linux/arm64]
platform: [amd64, arm64]
fail-fast: false
steps:
- name: Copy Repo Files
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
push: false
load: true
tags: ${{ env.GH_RUNNER_IMAGE }}
platforms: ${{ matrix.platform }}
platforms: linux/${{ matrix.platform }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Run goss tests
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
release: [jammy, focal, noble]
platform: [linux/amd64, linux/arm64]
platform: [amd64, arm64]
fail-fast: false
steps:
- name: Copy Repo Files
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
push: false
load: true
tags: ${{ env.GH_RUNNER_IMAGE }}
platforms: ${{ matrix.platform }}
platforms: linux/${{ matrix.platform }}
cache-from: type=gha
cache-to: type=gha,mode=max
# Tests will run against the final `${GH_RUNNER_IMAGE}` laid on top of `base-${GH_RUNNER_IMAGE}`
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
strategy:
matrix:
release: [bookworm, sid]
platform: [linux/amd64, linux/arm64]
platform: [amd64, arm64]
fail-fast: false
steps:
- name: Copy Repo Files
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
push: false
load: true
tags: ${{ env.GH_RUNNER_IMAGE }}
platforms: ${{ matrix.platform }}
platforms: linux/${{ matrix.platform }}
cache-from: type=gha
cache-to: type=gha,mode=max
# Tests will run against the final `${GH_RUNNER_IMAGE}` laid on top of `base-${GH_RUNNER_IMAGE}`
Expand Down

0 comments on commit 78d8042

Please sign in to comment.