fix: install git and python3 in release job
Some checks failed
CI / test (push) Successful in 1m45s
CI / release (push) Failing after 29s
CI / docker (push) Has been skipped

This commit is contained in:
Stefano Bertelli 2026-03-30 19:40:00 -05:00
parent 792a9a4151
commit 8282f53478

View file

@ -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}" \