Skip to content

Commit 75bcd96

Browse files
authored
Merge pull request #388 from myoung34/bugfix/platforms_slash
Bugfix: fix platforms to remove slash
2 parents 1ec6d38 + 78d8042 commit 75bcd96

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/base.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
release: [jammy, focal, noble]
20-
platform: [linux/amd64, linux/arm64]
20+
platform: [amd64, arm64]
2121
fail-fast: false
2222
steps:
2323
- name: Copy Repo Files
@@ -54,7 +54,7 @@ jobs:
5454
push: false
5555
load: true
5656
tags: ${{ env.GH_RUNNER_IMAGE }}
57-
platforms: ${{ matrix.platform }}
57+
platforms: linux/${{ matrix.platform }}
5858
cache-from: type=gha
5959
cache-to: type=gha,mode=max
6060
- name: Run goss tests
@@ -69,7 +69,7 @@ jobs:
6969
strategy:
7070
matrix:
7171
release: [bookworm, sid]
72-
platform: [linux/amd64, linux/arm64]
72+
platform: [amd64, arm64]
7373
fail-fast: false
7474
steps:
7575
- name: Copy Repo Files
@@ -106,7 +106,7 @@ jobs:
106106
push: false
107107
load: true
108108
tags: ${{ env.GH_RUNNER_IMAGE }}
109-
platforms: ${{ matrix.platform }}
109+
platforms: linux/${{ matrix.platform }}
110110
cache-from: type=gha
111111
cache-to: type=gha,mode=max
112112
- name: Run goss tests

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
release: [jammy, focal, noble]
23-
platform: [linux/amd64, linux/arm64]
23+
platform: [amd64, arm64]
2424
fail-fast: false
2525
steps:
2626
- name: Copy Repo Files
@@ -57,7 +57,7 @@ jobs:
5757
push: false
5858
load: true
5959
tags: ${{ env.GH_RUNNER_IMAGE }}
60-
platforms: ${{ matrix.platform }}
60+
platforms: linux/${{ matrix.platform }}
6161
cache-from: type=gha
6262
cache-to: type=gha,mode=max
6363
# Tests will run against the final `${GH_RUNNER_IMAGE}` laid on top of `base-${GH_RUNNER_IMAGE}`
@@ -95,7 +95,7 @@ jobs:
9595
strategy:
9696
matrix:
9797
release: [bookworm, sid]
98-
platform: [linux/amd64, linux/arm64]
98+
platform: [amd64, arm64]
9999
fail-fast: false
100100
steps:
101101
- name: Copy Repo Files
@@ -132,7 +132,7 @@ jobs:
132132
push: false
133133
load: true
134134
tags: ${{ env.GH_RUNNER_IMAGE }}
135-
platforms: ${{ matrix.platform }}
135+
platforms: linux/${{ matrix.platform }}
136136
cache-from: type=gha
137137
cache-to: type=gha,mode=max
138138
# Tests will run against the final `${GH_RUNNER_IMAGE}` laid on top of `base-${GH_RUNNER_IMAGE}`

0 commit comments

Comments
 (0)