File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 9
9
IMAGE_NAME : ${{ github.repository }}
10
10
jobs :
11
11
docker :
12
- runs-on : ubuntu-latest
13
- # Add permission to push to GHCR
12
+ strategy :
13
+ matrix :
14
+ runner : [ubuntu-latest, ubuntu-latest-arm64]
15
+ runs-on : ${{ matrix.runner }}
14
16
permissions :
15
17
contents : read
16
18
packages : write
17
19
steps :
18
20
- name : Checkout repository
19
21
uses : actions/checkout@v4
20
-
21
22
- name : Set up Docker Buildx
22
23
uses : docker/setup-buildx-action@v3
23
-
24
24
- name : Log in to GitHub Container Registry
25
25
uses : docker/login-action@v3
26
26
with :
27
27
registry : ${{ env.REGISTRY }}
28
28
username : ${{ github.actor }}
29
29
password : ${{ secrets.GITHUB_TOKEN }}
30
-
31
30
- name : Build and push hyperion-proxy
32
31
uses : docker/build-push-action@v5
33
32
with :
39
38
${{ env.REGISTRY }}/${{ github.repository }}/hyperion-proxy:${{ github.sha }}
40
39
cache-from : type=gha
41
40
cache-to : type=gha,mode=max
42
-
43
41
- name : Build and push tag
44
42
uses : docker/build-push-action@v5
45
43
with :
You can’t perform that action at this time.
0 commit comments