-
-
Notifications
You must be signed in to change notification settings - Fork 10
152 lines (133 loc) · 5.53 KB
/
buildx.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
name: buildx
on:
schedule:
- cron: "37 05 * * *"
push:
branches:
- master
pull_request:
jobs:
buildx:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
docker-file:
- path: 3.1/18
tags: "3.1-18 3.1-hydrogen"
platforms: linux/amd64,linux/arm64,linux/arm/v7
- path: 3.1/18/slim
tags: "3.1-slim-18 3.1-slim-hydrogen"
platforms: linux/amd64,linux/arm64,linux/arm/v7
- path: 3.1/18/alpine
tags: "3.1-alpine-18 3.1-alpine-hydrogen"
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
- path: 3.2/18
tags: "3.2 3.2-18 3.2-hydrogen"
platforms: linux/amd64,linux/arm64,linux/arm/v7
- path: 3.2/18/slim
tags: "3.2-slim 3.2-slim-18 3.2-slim-hydrogen"
platforms: linux/amd64,linux/arm64,linux/arm/v7
- path: 3.2/18/alpine
tags: "3.2-alpine 3.2-alpine-18 3.2-alpine-hydrogen"
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
- path: 3.3/18
tags: "3.3 3.3-18 3.3-hydrogen"
platforms: linux/amd64,linux/arm64,linux/arm/v7
- path: 3.3/18/slim
tags: "3.3-slim 3.3-slim-18 3.3-slim-hydrogen"
platforms: linux/amd64,linux/arm64,linux/arm/v7
- path: 3.3/18/alpine
tags: "3.3-alpine 3.3-alpine-18 3.3-alpine-hydrogen"
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
- path: 3.1/20
tags: "3.1-20 3.1-iron"
platforms: linux/amd64,linux/arm64,linux/arm/v7
- path: 3.1/20/slim
tags: "3.1-slim-20 3.1-slim-iron"
platforms: linux/amd64,linux/arm64,linux/arm/v7
- path: 3.1/20/alpine
tags: "3.1-alpine-20 3.1-alpine-iron"
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
- path: 3.2/20
tags: "3.2 3.2-20 3.2-iron latest"
platforms: linux/amd64,linux/arm64,linux/arm/v7
- path: 3.2/20/slim
tags: "3.2-slim 3.2-slim-20 3.2-slim-iron slim"
platforms: linux/amd64,linux/arm64,linux/arm/v7
- path: 3.2/20/alpine
tags: "3.2-alpine 3.2-alpine-20 3.2-alpine-iron alpine"
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
- path: 3.3/20
tags: "3.3 3.3-20 3.3-iron"
platforms: linux/amd64,linux/arm64,linux/arm/v7
- path: 3.3/20/slim
tags: "3.3-slim 3.3-slim-20 3.3-slim-iron"
platforms: linux/amd64,linux/arm64,linux/arm/v7
- path: 3.3/20/alpine
tags: "3.3-alpine 3.3-alpine-20 3.3-alpine-iron"
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
steps:
- name: Checkout
uses: actions/checkout@v4.1.7
- name: Prepare
id: prepare
run: |
DOCKER_IMAGE=timbru31/ruby-node
TEMP="${{ matrix.docker-file.tags }}"
TAGZ=($TEMP)
VERSION=${TAGZ[0]}
for i in "${!TAGZ[@]}"; do
if [ "$i" -eq "0" ];
then
TAGS="${DOCKER_IMAGE}:${TAGZ[$i]}"
else
TAGS="${TAGS},${DOCKER_IMAGE}:${TAGZ[$i]}"
fi
done
echo "docker_image=${DOCKER_IMAGE}" >> $GITHUB_OUTPUT
echo "version=${VERSION}" >> $GITHUB_OUTPUT
echo "tags=${TAGS}" >> $GITHUB_OUTPUT
- name: Set up QEMU
uses: docker/setup-qemu-action@v3.2.0
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3.6.1
with:
install: true
- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Docker Buildx (build)
uses: docker/build-push-action@v6.6.1
if: success() && !contains(github.ref, 'master')
with:
push: false
context: ./${{ matrix.docker-file.path }}
file: ./${{ matrix.docker-file.path }}/Dockerfile
build-args: REFRESHED_AT=$(date +%Y-%m-%d)
platforms: ${{ matrix.docker-file.platforms }}
tags: ${{ steps.prepare.outputs.tags }}
- name: Docker Login
if: success() && github.event_name != 'pull_request' && contains(github.ref, 'master')
uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Docker Buildx (push)
uses: docker/build-push-action@v6.6.1
if: success() && github.event_name != 'pull_request' && contains(github.ref, 'master')
with:
push: true
context: ./${{ matrix.docker-file.path }}
file: ./${{ matrix.docker-file.path }}/Dockerfile
build-args: REFRESHED_AT=$(date +%Y-%m-%d)
platforms: ${{ matrix.docker-file.platforms }}
tags: ${{ steps.prepare.outputs.tags }}
- name: Inspect Image
if: always() && github.event_name != 'pull_request' && contains(github.ref, 'master')
run: |
docker buildx imagetools inspect ${{ steps.prepare.outputs.docker_image }}:${{ steps.prepare.outputs.version }}
- name: Clear
if: always() && github.event_name != 'pull_request'
run: |
rm -f ${HOME}/.docker/config.json