@@ -106,10 +106,6 @@ jobs:
106
106
- name : Checkout
107
107
uses : actions/checkout@v3
108
108
109
- - name : Get the version
110
- id : get_version
111
- run : echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
112
-
113
109
- name : Set up Go
114
110
uses : actions/setup-go@v3
115
111
with :
@@ -131,10 +127,12 @@ jobs:
131
127
export _NAME=nginx-ui-$(jq ".$GOOS[\"$GOARCH$GOARM\"].name" -r < .github/build/build_info.json)
132
128
export _ARCH=$(jq ".$GOOS[\"$GOARCH$GOARM\"].arch" -r < .github/build/build_info.json)
133
129
export _ABI=$(jq ".$GOOS[\"$GOARCH$GOARM\"].abi // \"\"" -r < .github/build/build_info.json)
134
- echo "GOOS: $GOOS, GOARCH: $GOARCH, GOARM: $GOARM, ABI: $_ABI, RELEASE_NAME: $_NAME"
130
+ export _ARTIFACT=nginx-ui-$GOOS-$GOARCH$(if [[ "$GOARM" ]]; then echo "v$GOARM"; fi)
131
+ echo "GOOS: $GOOS, GOARCH: $GOARCH, GOARM: $GOARM, ABI: $_ABI, RELEASE_NAME: $_NAME, ARTIFACT_NAME: $_ARTIFACT"
135
132
echo "ARCH_NAME=$_ARCH" >> $GITHUB_ENV
136
133
echo "ABI=$_ABI" >> $GITHUB_ENV
137
134
echo "DIST=$_NAME" >> $GITHUB_ENV
135
+ echo "ARTIFACT=$_ARTIFACT" >> $GITHUB_ENV
138
136
139
137
- name : Install musl cross compiler
140
138
if : env.GOOS == 'linux'
@@ -176,7 +174,7 @@ jobs:
176
174
- name : Archive backend artifacts
177
175
uses : actions/upload-artifact@v3
178
176
with :
179
- name : ${{ env.DIST }}
177
+ name : ${{ env.ARTIFACT }}
180
178
path : dist/nginx-ui
181
179
182
180
- name : Prepare publish
@@ -191,49 +189,66 @@ jobs:
191
189
with :
192
190
files : ${{ env.DIST }}.tar.gz
193
191
192
+ docker-build :
193
+ runs-on : ubuntu-latest
194
+ needs : build
195
+ env :
196
+ PLATFORMS : linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6,linux/arm/v5
197
+ steps :
198
+ - name : Checkout
199
+ uses : actions/checkout@v3
200
+
201
+ - name : Get the version
202
+ id : get_version
203
+ run : echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
204
+
205
+ - name : Download artifacts
206
+ uses : actions/download-artifact@v3
207
+ with :
208
+ path : ./dist
209
+
210
+ - name : Prepare Artifacts
211
+ run : chmod +x ./dist/nginx-ui-*/nginx-ui
212
+
194
213
- name : Set up Docker Buildx
195
- if : env.GOOS == 'linux' && env.GOARCH == 'amd64'
196
214
id : buildx
197
215
uses : docker/setup-buildx-action@v2
198
216
199
217
- name : Login to DockerHub
200
- if : env.GOOS == 'linux' && env.GOARCH == 'amd64'
201
218
uses : docker/login-action@v2
202
219
with :
203
220
username : ${{ secrets.DOCKERHUB_USER }}
204
221
password : ${{ secrets.DOCKERHUB_TOKEN }}
205
222
206
223
- name : Prepare Dockerfile
207
- if : github.event_name == 'release' && env.GOOS == 'linux' && env.GOARCH == 'amd64'
224
+ if : github.event_name == 'release'
208
225
run : |
209
226
cp ./Dockerfile ./dist
210
227
cp -rp ./resources ./dist
211
228
212
229
- name : Build and push
213
- if : github.event_name == 'release' && env.GOOS == 'linux' && env.GOARCH == 'amd64'
230
+ if : github.event_name == 'release'
214
231
uses : docker/build-push-action@v3
215
232
with :
216
233
context : ./dist
217
234
file : ./dist/Dockerfile
218
- platforms : linux/amd64
235
+ platforms : ${{ env.PLATFORMS }}
219
236
push : ${{ github.event_name != 'pull_request' }}
220
237
tags : |
221
238
uozi/nginx-ui:latest
222
239
uozi/nginx-ui:${{ steps.get_version.outputs.VERSION }}
223
240
224
241
- name : Prepare Demo Dockerfile
225
- if : env.GOOS == 'linux' && env.GOARCH == 'amd64'
226
242
run : |
227
243
cp ./demo.Dockerfile ./dist
228
244
cp -rp ./resources ./dist
229
245
230
246
- name : Build and push demo
231
- if : env.GOOS == 'linux' && env.GOARCH == 'amd64'
232
247
uses : docker/build-push-action@v3
233
248
with :
234
249
context : ./dist
235
250
file : ./dist/demo.Dockerfile
236
- platforms : linux/amd64
251
+ platforms : ${{ env.PLATFORMS }}
237
252
push : ${{ github.event_name != 'pull_request' }}
238
253
tags : |
239
254
uozi/nginx-ui-demo:latest
0 commit comments