Skip to content

Commit

Permalink
Merge pull request #16 from geoblocks/fix-ci
Browse files Browse the repository at this point in the history
fix(ci): image hash
  • Loading branch information
tyrossel authored Oct 24, 2024
2 parents bb89864 + 750cd99 commit c18c399
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 c18c399

Please sign in to comment.