fix: install git in forgejo workflow for bun build environment
Some checks failed
/ build (push) Failing after 1m20s

This commit is contained in:
Christoph Haas 2026-06-05 22:59:37 +02:00
parent c488014c41
commit f611c3f0ef

View file

@ -11,6 +11,7 @@ jobs:
container:
image: oven/bun:1
options: --privileged
steps:
- name: Checkout code
@ -24,6 +25,9 @@ jobs:
restore-keys: |
${{ runner.os }}-bun-
- name: Install git
run: apt-get update && apt-get install -y git
- name: Install dependencies
run: bun install --frozen-lockfile