From 7c1d9015234eba32df46c7ba26cac86fc2dfe437 Mon Sep 17 00:00:00 2001 From: Roland Thomas Date: Sat, 10 Jun 2023 18:06:03 -0400 Subject: [PATCH] Change default shell for actions to sh --- .gitea/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 5199567..1a89015 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -5,16 +5,17 @@ on: [push] jobs: Build-and-Deploy: runs-on: docker + defaults: + run: + shell: sh steps: - name: Setup node.js - shell: sh run: | apk --update add nodejs npm git - name: Check out repository code uses: actions/checkout@v3 - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - name: Pass login information - shell: sh env: DOCKER_AUTH_CONFIG: ${{ secrets.DOCKER_AUTH_CONFIG }} run: |