Compare commits

..

No commits in common. "cad393e70536368113d73c389b43bd38241c49b1" and "6d915234c6142109cddcc7e8913206a524062e93" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View file

@ -6,12 +6,12 @@ RUN set -eux; \
url=; \
case "$arch" in \
'amd64') \
url='https://dl.google.com/go/go1.22.1.linux-amd64.tar.gz'; \
sha256='aab8e15785c997ae20f9c88422ee35d962c4562212bb0f879d052a35c8307c7f'; \
url='https://dl.google.com/go/go1.22.0.linux-amd64.tar.gz'; \
sha256='f6c8a87aa03b92c4b0bf3d558e28ea03006eb29db78917daec5cfb6ec1046265'; \
;; \
'arm64') \
url='https://dl.google.com/go/go1.22.1.linux-arm64.tar.gz'; \
sha256='e56685a245b6a0c592fc4a55f0b7803af5b3f827aaa29feab1f40e491acf35b8'; \
url='https://dl.google.com/go/go1.22.0.linux-arm64.tar.gz'; \
sha256='6a63fef0e050146f275bf02a0896badfe77c11b6f05499bb647e7bd613a45a10'; \
;; \
*) echo >&2 "error: unsupported architecture '$arch' (likely packaging update needed)"; exit 1 ;; \
esac; \

View file

@ -16,5 +16,5 @@ if [ "$OLD_DIGEST" != "$CUR_DIGEST" ]; then
echo "$CUR_DIGEST" > old_digest
docker buildx prune -f
curl --data-binary "Keycloak image built\n\nDigest: $CUR_DIGEST" https://ntfy.thetadev.de/alerts
curl -d "Keycloak image built\n\nDigest: $CUR_DIGEST" https://ntfy.thetadev.de/alerts
fi