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.
2 parents c481f0e + 85f53d0 commit fc1304eCopy full SHA for fc1304e
.github/workflows/release.yml
@@ -54,7 +54,7 @@ jobs:
54
TAG=$(curl -s --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \
55
--header "Authorization: Bearer ${TOKEN}" \
56
"https://ghcr.io/v2/${IMAGE}/tags/list?n=1000" \
57
- | jq -r '.tags[-1]')
+ | jq -r '.tags[] | select(test("^[0-9]+\\.[0-9]+\\.[0-9]+-nbxyz[0-9]+$"))' | sort -V | tail -1)
58
echo LATEST_TAG: $TAG
59
MULTIDIGEST=$(curl -s \
60
--header "Accept: application/vnd.oci.image.index.v1+json" \
0 commit comments