Skip to content

Commit 9b554ab

Browse files
committed
fix: remove job name
1 parent 51cd99c commit 9b554ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ on: # yamllint disable-line rule:truthy
2020

2121
jobs:
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

0 commit comments

Comments
 (0)