From 69c6b1a4d40cdac780a57968169c8e221850dfd0 Mon Sep 17 00:00:00 2001 From: eewing Date: Tue, 17 Feb 2026 09:37:25 -0600 Subject: [PATCH] Update CI workflow to install Bun directly via script - Replaced the Bun setup action with a script to install Bun and update the PATH. - Ensured Bun's binary directory is added to the GitHub environment for subsequent steps. --- .gitea/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 32d01e1..d128a2c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,7 +14,10 @@ jobs: uses: actions/checkout@v4 - name: Setup Bun - uses: oven-sh/setup-bun@v2 + run: | + curl -fsSL https://bun.sh/install | bash + echo "$HOME/.bun/bin" >> $GITHUB_PATH + echo "PATH=$HOME/.bun/bin:$PATH" >> $GITHUB_ENV - name: Install dependencies run: bun install