test
All checks were successful
Build and Push Teamspeak Images on Base Image Update / check-for-changes (push) Successful in 6s
Build and Push Teamspeak Images on Base Image Update / build-alpine (push) Successful in 6s
Build and Push Teamspeak Images on Base Image Update / build-basic (push) Successful in 6s
Build and Push Teamspeak Images on Base Image Update / build-debian (push) Successful in 9s
Build and Push Teamspeak Images on Base Image Update / generate-build-info (push) Successful in 4s
Build and Push Teamspeak Images on Base Image Update / generate-changelogs (push) Has been skipped

This commit is contained in:
2025-07-17 19:32:22 -07:00
parent 80af6eb83e
commit b753e010f8

View File

@@ -71,9 +71,12 @@ jobs:
done done
if [ "$changes" = true ]; then if [ "$changes" = true ]; then
git fetch origin main
git rebase origin/main
git add .cache/*-base.digest git add .cache/*-base.digest
git commit -m "Update base image digests ($(date -u +'%Y-%m-%dT%H:%M:%SZ'))" git commit -m "Update base image digests ($(date -u +'%Y-%m-%dT%H:%M:%SZ'))"
git push git push origin HEAD:main
else else
echo "[INFO] No base digest changes to commit." echo "[INFO] No base digest changes to commit."
fi fi
@@ -118,7 +121,6 @@ jobs:
check_variant "debian" "${{ steps.get_digest.outputs.debian_digest }}" check_variant "debian" "${{ steps.get_digest.outputs.debian_digest }}"
check_variant "basic" "${{ steps.get_digest.outputs.basic_digest }}" check_variant "basic" "${{ steps.get_digest.outputs.basic_digest }}"
build-alpine: build-alpine:
needs: check-for-changes needs: check-for-changes
if: needs.check-for-changes.outputs.should_build_alpine == 'true' if: needs.check-for-changes.outputs.should_build_alpine == 'true'