From 2ccdfe1550e2bfb1d14fdb792a9de86130606b76 Mon Sep 17 00:00:00 2001 From: Sangelo Date: Wed, 3 Apr 2024 12:39:23 +0200 Subject: [PATCH] [c] try fixing tag variable --- .forgejo/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 10748a9..56d80b7 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -31,7 +31,7 @@ jobs: - name: 🐋 Build Container run: | # extract tag name without the prefix - TAG=$(echo "${{ github.ref }}" | sed 's/refs\/tags\///') + export TAG=$(echo "${{ github.ref }}" | sed 's/refs\/tags\///') # build the container just -f /workspace/sangelo/website/Justfile build "${TAG}"