File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 13
13
name : " DEV: ACR Build & Push"
14
14
runs-on : ubuntu-latest
15
15
environment : dev
16
- if : github.event. inputs.test_tag != 'true ' && github.ref_name != 'prod'
16
+ if : inputs.test_tag == 'false ' && github.ref_name != 'prod'
17
17
env :
18
18
DOCKERFILE : ${{ vars.DOCKERFILE || 'Dockerfile' }}
19
19
AZURE_CONTAINER_REGISTRY : ${{ vars.AZURE_CONTAINER_REGISTRY }}
59
59
name : " TEST: ACR Build & Push"
60
60
runs-on : ubuntu-latest
61
61
environment : dev
62
- if : github.event. inputs.test_tag == 'true'
62
+ if : inputs.test_tag == 'true'
63
63
env :
64
64
DOCKERFILE : dev.Dockerfile
65
65
AZURE_CONTAINER_REGISTRY : ${{ vars.AZURE_CONTAINER_REGISTRY }}
@@ -114,6 +114,6 @@ jobs:
114
114
with :
115
115
push : true
116
116
file : ${{ env.DOCKERFILE }}
117
- tags : ${{ env.AZURE_CONTAINER_REGISTRY }}/${{ github.event.repository.name }}:${{ github.event.inputs.image_tag }}
117
+ tags : ${{ env.AZURE_CONTAINER_REGISTRY }}/${{ github.event.repository.name }}:version-tag
118
118
build-args : platform=linux/amd64
119
119
Original file line number Diff line number Diff line change 68
68
-n ${{ env.KUBERNETES_NAMESPACE }} \
69
69
-d ${{ github.event.repository.name }} \
70
70
-r ${{ env.AZURE_CONTAINER_REGISTRY }} \
71
- -t ${{ github.event. inputs.test_cmd }}
71
+ -t ${{ inputs.test_cmd }}
You can’t perform that action at this time.
0 commit comments