Skip to content

Commit

Permalink
fix: correct manifest image digest
Browse files Browse the repository at this point in the history
  • Loading branch information
p5 committed Jan 5, 2025
1 parent 27a654a commit 6640bb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ jobs:
PLATFORMS=(${{ env.PLATFORMS }})
for platform in ${PLATFORMS[@]}; do
digest=$(echo $DIGESTS | jq -r ".$platform")
echo "Adding ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}:$digest for $platform"
podman manifest add $MANIFEST ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}:$digest --arch $platform
echo "Adding ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}@$digest for $platform"
podman manifest add $MANIFEST ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}@$digest --arch $platform
done
- name: Login to GHCR

Check warning on line 259 in .github/workflows/build.yml

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

.github/workflows/build.yml#L259

An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release.
Expand Down

0 comments on commit 6640bb2

Please sign in to comment.