From 8282f53478367b5f20947fb27fa26eb10fb036a1 Mon Sep 17 00:00:00 2001 From: Stefano Bertelli Date: Mon, 30 Mar 2026 19:40:00 -0500 Subject: [PATCH] fix: install git and python3 in release job --- .forgejo/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index c7edf88..d2dcce7 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -58,8 +58,8 @@ jobs: with: fetch-depth: 0 - - name: Install bash - run: apt-get update && apt-get install -y --no-install-recommends bash + - name: Install dependencies + run: apt-get update && apt-get install -y --no-install-recommends bash git python3 - name: Determine version bump id: version @@ -204,7 +204,7 @@ jobs: -u "${{ github.repository_owner }}" --password-stdin # Build the image - docker build --network host \ + docker build \ --build-arg "VERSION=${VERSION}" \ -t "${IMAGE}:${TAG}" \ -t "${IMAGE}:${MAJOR}.${MINOR}" \