From f611c3f0ef2ff632432f135d72d7701fbd896f88 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Fri, 5 Jun 2026 22:59:37 +0200 Subject: [PATCH] fix: install git in forgejo workflow for bun build environment --- .forgejo/workflows/playing-around.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.forgejo/workflows/playing-around.yaml b/.forgejo/workflows/playing-around.yaml index 0b31b52..348d29c 100644 --- a/.forgejo/workflows/playing-around.yaml +++ b/.forgejo/workflows/playing-around.yaml @@ -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