|
|
@@ -207,7 +207,7 @@ jobs:
|
|
207
|
207
|
echo "MAJOR_TAG=$M" >> $GITHUB_ENV
|
|
208
|
208
|
|
|
209
|
209
|
# manifest for :1.2.3 tag
|
|
210
|
|
- - name: Create and push manifest
|
|
|
210
|
+ - name: Create and push manifest (:ve.rs.ion)
|
|
211
|
211
|
uses: Noelware/docker-manifest-action@master
|
|
212
|
212
|
with:
|
|
213
|
213
|
base-image: ${{ secrets.DOCKER_IMAGE }}:${{ env.GIT_TAG }}
|
|
|
@@ -215,7 +215,7 @@ jobs:
|
|
215
|
215
|
push: true
|
|
216
|
216
|
|
|
217
|
217
|
# manifest for :1 tag (major release)
|
|
218
|
|
- - name: Create and push manifest
|
|
|
218
|
+ - name: Create and push manifest (:major)
|
|
219
|
219
|
uses: Noelware/docker-manifest-action@master
|
|
220
|
220
|
with:
|
|
221
|
221
|
base-image: ${{ secrets.DOCKER_IMAGE }}:${{ env.MAJOR_TAG }}
|
|
|
@@ -223,14 +223,7 @@ jobs:
|
|
223
|
223
|
push: true
|
|
224
|
224
|
|
|
225
|
225
|
# manifest for :latest tag
|
|
226
|
|
- - name: Create and push manifest
|
|
227
|
|
- uses: Noelware/docker-manifest-action@master
|
|
228
|
|
- with:
|
|
229
|
|
- base-image: ${{ secrets.DOCKER_IMAGE }}:${{ github.ref_name }}
|
|
230
|
|
- extra-images: ${{ secrets.DOCKER_IMAGE }}:${{ github.ref_name }}-amd64,${{ secrets.DOCKER_IMAGE }}:${{ github.ref_name }}-arm64v8,${{ secrets.DOCKER_IMAGE }}:${{ github.ref_name }}-armv7,${{ secrets.DOCKER_IMAGE }}:${{ github.ref_name }}-i386
|
|
231
|
|
- push: true
|
|
232
|
|
-
|
|
233
|
|
- - name: Create and push manifest
|
|
|
226
|
+ - name: Create and push manifest (:latest)
|
|
234
|
227
|
uses: Noelware/docker-manifest-action@master
|
|
235
|
228
|
with:
|
|
236
|
229
|
base-image: ${{ secrets.DOCKER_IMAGE }}:${{ env.LATEST_TAG }}
|