Skip to content

Commit

Permalink
fix(ci): image hash
Browse files Browse the repository at this point in the history
  • Loading branch information
tyrossel committed Oct 24, 2024
1 parent bb89864 commit 58c635a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish_docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
tags: ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_IMG_NAME }}:${{ env.DOCKER_TAG }}
- name: Update images sha
id: get_image_sha
run: echo "img_sha=$(docker inspect --format='{{index .RepoDigests 0}}' '${DOCKER_REGISTRY}/${DOCKER_IMG_NAME}:${DOCKER_TAG}' | cut -d':' -f2)" >> $GITHUB_OUTPUT;
run: echo "img_sha=$(docker inspect --format='{{index .RepoDigests 0}}' '${{ env.DOCKER_REGISTRY}}/${{ env.DOCKER_IMG_NAME}}:${{ env.DOCKER_TAG}}' | cut -d':' -f2)" >> $GITHUB_OUTPUT;
outputs:
image_sha: ${{ steps.get_image_sha.outputs.img_sha }}

Expand Down

0 comments on commit 58c635a

Please sign in to comment.