Skip to content

Commit 0093bd7

Browse files
committed
Fixed.
1 parent f5411df commit 0093bd7

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ jobs:
77
docker:
88
strategy:
99
matrix:
10-
name: [ amd64, arm64, arm-v7 ]
11-
os: [ linux/amd64, linux/arm64, linux/arm/v7 ]
10+
include:
11+
- short: amd64
12+
version: linux/amd64
13+
- short: arm64
14+
version: linux/arm64
15+
- short: arm7
16+
version: linux/arm/v7
1217
runs-on: ubuntu-latest
1318
steps:
1419
-
@@ -28,5 +33,5 @@ jobs:
2833
uses: docker/build-push-action@v6
2934
with:
3035
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

Comments
 (0)