From d1cbf972fee340d31918e9840888620d58d5b025 Mon Sep 17 00:00:00 2001 From: Remy Moll Date: Mon, 13 Oct 2025 18:05:27 +0200 Subject: [PATCH] since branch names may contain slashes and other special chars they are not suitable for tag names. only use the hash --- .gitea/workflows/backend_build-deploy-stg.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/backend_build-deploy-stg.yaml b/.gitea/workflows/backend_build-deploy-stg.yaml index 527272a..a59f75c 100644 --- a/.gitea/workflows/backend_build-deploy-stg.yaml +++ b/.gitea/workflows/backend_build-deploy-stg.yaml @@ -13,6 +13,6 @@ jobs: uses: ./.gitea/workflows/workflow_build-image.yaml with: # sets a unique tag for each commit in the PR - this gets deployed to a separate application instance using argocd - tag: ${{ github.head_ref }}-${{ github.sha }} + tag: sha${{ github.sha }} secrets: PACKAGE_REGISTRY_ACCESS: ${{ secrets.PACKAGE_REGISTRY_ACCESS }}