From f3aaf272427e99fbf8ed2af3d061aafd8fd4068d Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 13 Apr 2026 11:40:46 +0200 Subject: [PATCH] fix(ci): set RELEASE_VERSION to avoid git dependency in containers The mage initVars calls git describe when RELEASE_VERSION is not set. Setting it avoids needing git in the container images. --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c3f13507c..b46131224 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -235,6 +235,7 @@ jobs: image: ${{ matrix.image }} env: REPO_SUITE: ${{ github.ref_type == 'tag' && 'stable' || 'unstable' }} + RELEASE_VERSION: unstable steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6