From 3689f0b1b4721857123b8fa28d35bb460da99750 Mon Sep 17 00:00:00 2001 From: devops Date: Tue, 23 Jun 2026 11:20:40 +0000 Subject: [PATCH] fix deploy: use sh shell (alpine has no bash) --- .gitea/workflows/deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 52ae562..6116f9a 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -6,6 +6,9 @@ on: jobs: deploy: runs-on: ubuntu-latest + defaults: + run: + shell: sh steps: - name: Install SSH client run: apk add --no-cache openssh-client