ci: push per-SHA image tag (PORT rollback support) [skip ci]

This commit is contained in:
2026-07-28 01:13:55 -05:00
parent 5576fe86ef
commit 1654f712ac
+8
View File
@@ -42,6 +42,14 @@ jobs:
# Dangling-only prune: removes untagged leftovers from previous builds. Never # Dangling-only prune: removes untagged leftovers from previous builds. Never
# removes the tagged :latest or any image referenced by a running container. # removes the tagged :latest or any image referenced by a running container.
- name: Push per-SHA tag
if: success()
run: |
IMAGE="registry.alwisp.com/${{ gitea.repository }}"
GIT_SHA="$(git rev-parse --short=7 HEAD)"
docker tag "${IMAGE}:latest" "${IMAGE}:sha-${GIT_SHA}"
docker push "${IMAGE}:sha-${GIT_SHA}"
- name: Prune dangling images on host - name: Prune dangling images on host
if: always() if: always()
run: docker image prune -f 2>/dev/null || true run: docker image prune -f 2>/dev/null || true