Skip to content

Commit 98a1d02

Browse files
committed
fix workflow part XII
1 parent 39e75cd commit 98a1d02

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/build-release-latest.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ env:
1212
jobs:
1313
build-image:
1414
runs-on: ubuntu-latest
15+
outputs:
16+
image_tag: ${{ steps.get_hash.outputs.HASH }}
1517
steps:
1618
- uses: actions/checkout@v4
1719
# docker login is needed for pushing the test image
@@ -32,7 +34,7 @@ jobs:
3234
runs-on: ubuntu-latest
3335
needs: build-image
3436
container:
35-
image: ${{ env.cr_image }}:${{ steps.get_hash.outputs.HASH }}
37+
image: ${{ env.cr_image }}:${{ needs.build-image.outputs.image_tag }}
3638
steps:
3739
- run: ls
3840

0 commit comments

Comments
 (0)