From cae651302a4c7f8dfa9ac400f9eaf908e9b45b0a Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Thu, 21 May 2026 10:54:34 -0400 Subject: [PATCH] fix(ci): use sh instead of bash for act runner compatibility Gitea act runner image lacks bash, causing all run steps to fail with exit 127. Default shell to sh which is available in all images. --- .gitea/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 3bccfb9..151a070 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -8,6 +8,9 @@ on: jobs: test: runs-on: ubuntu-latest + defaults: + run: + shell: sh steps: - uses: actions/checkout@v4