feat(delivery): publish immutable source images and declare release
Build and Push Container / build-and-push (pull_request) Failing after 3s

This commit is contained in:
2026-09-11 08:53:23 +00:00
parent 198c3e7952
commit 593d6c552e
3 changed files with 19 additions and 2 deletions
+2 -2
View File
@@ -108,7 +108,7 @@ jobs:
SHA: ${{ gitea.sha }}
run: |
set -euo pipefail
tags=()
tags=("$IMAGE_NAME:sha-$SHA")
if [[ "$REF" == refs/tags/* ]]; then
version="$REF_NAME"
@@ -143,7 +143,7 @@ jobs:
build_args+=(--tag "$tag")
done
docker build "${build_args[@]}" .
docker build --label "org.opencontainers.image.revision=$GITHUB_SHA" "${build_args[@]}" .
- name: Push image
if: ${{ (steps.delivery.outputs.run == 'true') && github.event_name != 'pull_request' }}