File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ on: # yamllint disable-line rule:truthy
20
20
21
21
jobs :
22
22
build :
23
- name : Build
24
23
runs-on : ubuntu-latest
25
24
strategy :
26
25
fail-fast : false
@@ -93,11 +92,13 @@ jobs:
93
92
if : success() && startsWith(github.ref, 'refs/tags/')
94
93
run : |
95
94
IMAGE_TAG=${{ env.IMAGE_NAMESPACE }}:${{ env.TEMPLATE }}-${{ env.VERSION }} make test
95
+ echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_ENV
96
96
97
97
- name : Test Docker Master Image
98
98
if : success() && ! startsWith(github.ref, 'refs/tags/')
99
99
run : |
100
100
IMAGE_TAG=${{ env.IMAGE_NAMESPACE }}:${{ env.TEMPLATE }}-latest make test
101
+ echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_ENV
101
102
102
103
- name : Push Docker Image
103
104
uses : docker/build-push-action@v3
You can’t perform that action at this time.
0 commit comments