We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39e75cd commit 98a1d02Copy full SHA for 98a1d02
1 file changed
.github/workflows/build-release-latest.yml
@@ -12,6 +12,8 @@ env:
12
jobs:
13
build-image:
14
runs-on: ubuntu-latest
15
+ outputs:
16
+ image_tag: ${{ steps.get_hash.outputs.HASH }}
17
steps:
18
- uses: actions/checkout@v4
19
# docker login is needed for pushing the test image
@@ -32,7 +34,7 @@ jobs:
32
34
33
35
needs: build-image
36
container:
- image: ${{ env.cr_image }}:${{ steps.get_hash.outputs.HASH }}
37
+ image: ${{ env.cr_image }}:${{ needs.build-image.outputs.image_tag }}
38
39
- run: ls
40
0 commit comments