We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5411df commit 0093bd7Copy full SHA for 0093bd7
.github/workflows/ci.yml
@@ -7,8 +7,13 @@ jobs:
7
docker:
8
strategy:
9
matrix:
10
- name: [ amd64, arm64, arm-v7 ]
11
- os: [ linux/amd64, linux/arm64, linux/arm/v7 ]
+ include:
+ - short: amd64
12
+ version: linux/amd64
13
+ - short: arm64
14
+ version: linux/arm64
15
+ - short: arm7
16
+ version: linux/arm/v7
17
runs-on: ubuntu-latest
18
steps:
19
-
@@ -28,5 +33,5 @@ jobs:
28
33
uses: docker/build-push-action@v6
29
34
with:
30
35
push: true
31
- tags: iantorres/boosted:${{ matrix.os }}-latest
32
- platforms: ${{ matrix.os }}
36
+ tags: iantorres/boosted:${{ matrix.short }}-latest
37
+ platforms: ${{ matrix.version }}
0 commit comments