We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a65cfc commit 8bffe2fCopy full SHA for 8bffe2f
.github/workflows/dockerimage.yml
@@ -9,6 +9,7 @@ on:
9
env:
10
REGISTRY: pwabuilder.azurecr.io
11
IMAGE_NAME: pwa-android-build-box
12
+ TAG: master
13
14
jobs:
15
@@ -42,12 +43,13 @@ jobs:
42
43
with:
44
context: .
45
push: false
46
+ load: true
47
platforms: linux/amd64
- tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:master,${{ steps.meta.outputs.tags }}
48
+ tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.TAG }},${{ steps.meta.outputs.tags }}
49
labels: ${{ steps.meta.outputs.labels }}
50
cache-from: type=gha
51
cache-to: type=gha,mode=max
52
target: minimal-plus
53
54
- name: Push
- run: docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:master
55
+ run: docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.TAG }}
0 commit comments