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
2020
2121jobs :
2222 build :
23- name : Build
2423 runs-on : ubuntu-latest
2524 strategy :
2625 fail-fast : false
@@ -93,11 +92,13 @@ jobs:
9392 if : success() && startsWith(github.ref, 'refs/tags/')
9493 run : |
9594 IMAGE_TAG=${{ env.IMAGE_NAMESPACE }}:${{ env.TEMPLATE }}-${{ env.VERSION }} make test
95+ echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_ENV
9696
9797 - name : Test Docker Master Image
9898 if : success() && ! startsWith(github.ref, 'refs/tags/')
9999 run : |
100100 IMAGE_TAG=${{ env.IMAGE_NAMESPACE }}:${{ env.TEMPLATE }}-latest make test
101+ echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_ENV
101102
102103 - name : Push Docker Image
103104 uses : docker/build-push-action@v3
You can’t perform that action at this time.
0 commit comments