We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97ab84c commit 9817fecCopy full SHA for 9817fec
.github/workflows/build.yml
@@ -61,7 +61,7 @@ jobs:
61
set -ex
62
FIRST_TAG=$(echo "${{ inputs.tags }}" | awk '{print $1}')
63
PLATFORM="amd64"
64
- if [ "${{ matrix.runner }}" = "ubuntu-24.04-arm"]; then
+ if [ "${{ matrix.runner }}" = "ubuntu-22.04-arm" ]; then
65
PLATFORM="arm64"
66
fi
67
make push \
@@ -105,3 +105,4 @@ jobs:
105
DIGEST=$(docker buildx imagetools inspect "$IMAGE" | grep Digest | awk '{print $2}')
106
echo "digest=-Pisle.${{ inputs.image }}.digest=${{ inputs.repository }}/${{ inputs.image }}@$DIGEST" >> $GITHUB_OUTPUT
107
echo "context=docker-image://${{ inputs.repository }}/${{ inputs.image }}@$DIGEST" >> $GITHUB_OUTPUT
108
+
0 commit comments