Compare commits

..

2 commits

Author SHA1 Message Date
cad393e705
chore: update golang to v1.22.1
All checks were successful
Build and push cimaster image / build (push) Successful in 19m18s
Build and push cimaster image / test (push) Successful in 9s
2024-03-06 19:15:18 +01:00
7d98e07573
fix: ntfy newline 2024-03-06 19:13:28 +01:00
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.0.linux-amd64.tar.gz'; \
sha256='f6c8a87aa03b92c4b0bf3d558e28ea03006eb29db78917daec5cfb6ec1046265'; \
url='https://dl.google.com/go/go1.22.1.linux-amd64.tar.gz'; \
sha256='aab8e15785c997ae20f9c88422ee35d962c4562212bb0f879d052a35c8307c7f'; \
;; \
'arm64') \
url='https://dl.google.com/go/go1.22.0.linux-arm64.tar.gz'; \
sha256='6a63fef0e050146f275bf02a0896badfe77c11b6f05499bb647e7bd613a45a10'; \
url='https://dl.google.com/go/go1.22.1.linux-arm64.tar.gz'; \
sha256='e56685a245b6a0c592fc4a55f0b7803af5b3f827aaa29feab1f40e491acf35b8'; \
;; \
*) 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 -d "Keycloak image built\n\nDigest: $CUR_DIGEST" https://ntfy.thetadev.de/alerts
curl --data-binary "Keycloak image built\n\nDigest: $CUR_DIGEST" https://ntfy.thetadev.de/alerts
fi