From 2b19efff45c0b30784fa6204d373abb4616352b4 Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sun, 12 Jul 2026 13:27:58 +0200 Subject: [PATCH] Expand `deploy-image.yml` triggers to include `develop` and `feature/*` branches. --- .gitea/workflows/deploy-image.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy-image.yml b/.gitea/workflows/deploy-image.yml index d8eb216..c3876ad 100644 --- a/.gitea/workflows/deploy-image.yml +++ b/.gitea/workflows/deploy-image.yml @@ -32,18 +32,21 @@ jobs: REF="${{ github.ref_name }}" if [[ "${REF}" == v* ]]; then TAG="${REF#v}" + TAGS="${FULL_IMAGE}:${TAG},${FULL_IMAGE}:latest" else TAG=$(echo "${REF}" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9._-]/-/g') + TAGS="${FULL_IMAGE}:${TAG}" fi echo "Registry: ${REGISTRY}" echo "Actor: ${ACTOR}" - echo "Image: ${FULL_IMAGE}:${TAG}" + echo "Tags: ${TAGS}" echo "registry=${REGISTRY}" >> "$GITHUB_OUTPUT" echo "actor=${ACTOR}" >> "$GITHUB_OUTPUT" echo "image=${FULL_IMAGE}" >> "$GITHUB_OUTPUT" echo "tag=${TAG}" >> "$GITHUB_OUTPUT" + echo "tags=${TAGS}" >> "$GITHUB_OUTPUT" - name: Network Debug run: | @@ -67,4 +70,4 @@ jobs: with: context: . push: true - tags: ${{ steps.compute-tag.outputs.image }}:${{ steps.compute-tag.outputs.tag }} \ No newline at end of file + tags: ${{ steps.compute-tag.outputs.tags }} \ No newline at end of file