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 d13d773 commit 8d94726Copy full SHA for 8d94726
.github/workflows/build-and-test.yml
@@ -9,7 +9,6 @@ on:
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
-
13
steps:
14
- uses: actions/checkout@v4
15
@@ -30,10 +29,11 @@ jobs:
30
29
CI: false
31
32
docker:
33
34
+ strategy:
+ matrix:
35
+ architecture: [ amd64, arm64 ]
36
needs: build
37
38
- name: Checkout
39
uses: actions/checkout@v4
@@ -61,4 +61,5 @@ jobs:
61
with:
62
context: .
63
push: true
64
- tags: xcodeassociated/react-typescript-vite-template:latest
+ platforms: linux/${{ matrix.architecture }}
65
+ tags: xcodeassociated/react-typescript-vite-template_${{ matrix.architecture }}:latest
0 commit comments