From d1fe20107ee4229aac6e6b20dbe482298fb9d382 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Fri, 5 Jun 2026 23:29:13 +0200 Subject: [PATCH] fix: install curl in forgejo workflow for deployment webhook --- .forgejo/workflows/playing-around.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/playing-around.yaml b/.forgejo/workflows/playing-around.yaml index 64fc2a1..88f73a6 100644 --- a/.forgejo/workflows/playing-around.yaml +++ b/.forgejo/workflows/playing-around.yaml @@ -25,8 +25,8 @@ jobs: restore-keys: | ${{ runner.os }}-bun- - - name: Install git - run: apt-get update && apt-get install -y git + - name: Install git and curl + run: apt-get update && apt-get install -y git curl - name: Install dependencies run: bun install --frozen-lockfile