From a941dc9721750a651ef5185db9ff3261badce026 Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Tue, 25 Feb 2025 19:18:55 -0800 Subject: [PATCH] Use /bin/sh to install bash --- .gitea/workflows/publish.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index 9b571db..9750383 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -21,7 +21,8 @@ jobs: - checkout runs-on: alpine steps: - - run: apk add --no-cache bash + - shell: /bin/sh + run: apk add --no-cache bash - run: | echo "Hello World" echo "Goodbye Mars" @@ -31,7 +32,8 @@ jobs: - block-posts-containining-tk runs-on: alpine steps: - - run: apk add --no-cache bash + - shell: /bin/sh + run: apk add --no-cache bash - run: | apk add --no-cache hugo git git submodule init