File tree Expand file tree Collapse file tree 4 files changed +46
-5
lines changed
Expand file tree Collapse file tree 4 files changed +46
-5
lines changed Original file line number Diff line number Diff line change 77
88jobs :
99 call-workflow :
10- uses : linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v5
10+ uses : linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v6
1111 with :
1212 repo_owner : ${{ github.repository_owner }}
1313 app_name : " monit"
Original file line number Diff line number Diff line change 66
77jobs :
88 call-workflow :
9- uses : linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v5
9+ uses : linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v6
1010 with :
1111 repo_owner : ${{ github.repository_owner }}
1212 app_name : " monit"
1313 release_type : " alpine"
1414 release_url : " v3.15/main"
1515 release_name : " monit"
16+ target-arch : " all"
1617 secrets :
17- scarf_token : ${{ secrets.SCARF_TOKEN }}
18+ scarf_token : ${{ secrets.SCARF_TOKEN }}
Original file line number Diff line number Diff line change 77
88jobs :
99 call-workflow :
10- uses : linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v5
10+ uses : linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v6
1111 with :
1212 repo_owner : ${{ github.repository_owner }}
1313 app_name : " monit"
Original file line number Diff line number Diff line change @@ -13,7 +13,47 @@ target "image-local" {
1313 output = [" type=docker" ]
1414}
1515
16- target "image-all" {
16+ target "amd64" {
17+ inherits = [" image" ]
18+ dockerfile = " Dockerfile"
19+ platforms = [
20+ " linux/amd64"
21+ ]
22+ }
23+
24+ target "arm64v8" {
25+ inherits = [" image" ]
26+ dockerfile = " Dockerfile.aarch64"
27+ platforms = [
28+ " linux/arm64"
29+ ]
30+ }
31+
32+ target "arm32v7" {
33+ inherits = [" image" ]
34+ dockerfile = " Dockerfile.armhf"
35+ platforms = [
36+ " linux/arm/v7"
37+ ]
38+ }
39+
40+ target "64" {
41+ inherits = [" image" ]
42+ platforms = [
43+ " linux/amd64" ,
44+ " linux/arm64"
45+ ]
46+ }
47+
48+ target "arm" {
49+ inherits = [" image" ]
50+ platforms = [
51+ " linux/arm64" ,
52+ " linux/arm/v7"
53+ ]
54+ }
55+
56+ target "all" {
1757 inherits = [" image" ]
1858 platforms = [
1959 " linux/amd64" ,
You can’t perform that action at this time.
0 commit comments