Skip to content

Commit

Permalink
update workflow14
Browse files Browse the repository at this point in the history
  • Loading branch information
phynias committed Apr 3, 2024
1 parent 200c8ff commit cc1ef0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/auto-build-on-base-image-change.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
LATEST_DIGEST=$(docker inspect --format='{{index .RepoDigests 0}}' pihole/pihole:latest)
echo "LATEST_DIGEST=$LATEST_DIGEST" >> $GITHUB_ENV
echo "BASE_IMAGE_UPDATED=false" >> $GITHUB_ENV
if [[ "$LATEST_DIGEST" != "$${{ vars.BASE_IMAGE_DIGEST }}" ]]; then
if [[ "$LATEST_DIGEST" != "${{ vars.BASE_IMAGE_DIGEST }}" ]]; then
echo "Base image has been updated!"
echo "BASE_IMAGE_UPDATED=true" >> $GITHUB_ENV
else
Expand Down

0 comments on commit cc1ef0f

Please sign in to comment.