We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b492dc commit 1f8ebb9Copy full SHA for 1f8ebb9
.github/workflows/build_rechunk.yml
@@ -77,10 +77,10 @@ jobs:
77
78
sudo podman manifest create rechunk
79
80
- SHA=$(skopeo inspect docker://ghcr.io/hhd-dev/rechunk:$VERSION-x86_64 | jq ".Digest")
+ SHA=$(skopeo inspect docker://ghcr.io/hhd-dev/rechunk:$VERSION-x86_64 | jq --raw-output ".Digest")
81
sudo podman manifest add rechunk ghcr.io/hhd-dev/rechunk@$SHA --arch linux/amd64
82
if [[ ${{ github.event.inputs.x86 }} != "true" ]]; then
83
- SHA=$(skopeo inspect docker://ghcr.io/hhd-dev/rechunk:$VERSION-aarch64 | jq ".Digest")
+ SHA=$(skopeo inspect docker://ghcr.io/hhd-dev/rechunk:$VERSION-aarch64 | jq --raw-output ".Digest")
84
sudo podman manifest add rechunk ghcr.io/hhd-dev/rechunk@$SHA --arch linux/arm64
85
fi
86
0 commit comments