From f254e1b14bb7e8d95a852b5b93f22676254ba3f8 Mon Sep 17 00:00:00 2001 From: Christian Krakau-Louis Date: Wed, 11 Feb 2026 18:59:59 +0100 Subject: [PATCH] fix: force-add build metadata files to override .gitignore --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3d5e453c..b103cfec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,7 +53,7 @@ jobs: run: | for f in VERSION BUILD_DATE GIT_SHA RUNTIME_INFO; do if [ -f "$f" ]; then - git add "$f" + git add -f "$f" fi done if ! git diff --staged --quiet; then @@ -70,4 +70,4 @@ jobs: const ref = context.ref; const tag = ref.replace('refs/tags/', ''); console.log(`New tag created: ${tag}`); - console.log('Docker build will be triggered automatically by the docker-build workflow'); + console.log('Docker build will be triggered automatically by the docker-build workflow'); \ No newline at end of file