We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b9a60d commit 96d5ec0Copy full SHA for 96d5ec0
1 file changed
.github/workflows/build-release-latest.yml
@@ -20,7 +20,7 @@ jobs:
20
- id: get_hash
21
run: echo "HASH=$(ls -lR | xargs | md5sum | cut -d\ -f1)" >> $GITHUB_OUTPUT
22
- id: get_image
23
- run: echo "(${{ github.repository }} | tr '[:upper:]' '[:lower:]'):${{ steps.get_hash.outputs.HASH }}"
+ run: echo "$(${{ github.repository }} | tr '[:upper:]' '[:lower:]'):${{ steps.get_hash.outputs.HASH }}"
24
# build container image for package creation
25
- run: docker pull ${{ env.cr_image }}:${{ steps.get_hash.outputs.HASH }} || docker build -t ${{ env.cr_image }}:${{ steps.get_hash.outputs.HASH }} -f dockerfiles/checkmk/Dockerfile .
26
- run: docker push ${{ env.cr_image }}:${{ steps.get_hash.outputs.HASH }}
0 commit comments