Change default shell for actions to sh
rtj.dev Build and Deploy / Build-and-Deploy (push) Failing after 5s Details

This commit is contained in:
Roland Thomas 2023-06-10 18:06:03 -04:00
parent e3b2107499
commit 7c1d901523
1 changed files with 3 additions and 2 deletions

View File

@ -5,16 +5,17 @@ on: [push]
jobs: jobs:
Build-and-Deploy: Build-and-Deploy:
runs-on: docker runs-on: docker
defaults:
run:
shell: sh
steps: steps:
- name: Setup node.js - name: Setup node.js
shell: sh
run: | run: |
apk --update add nodejs npm git apk --update add nodejs npm git
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v3 uses: actions/checkout@v3
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- name: Pass login information - name: Pass login information
shell: sh
env: env:
DOCKER_AUTH_CONFIG: ${{ secrets.DOCKER_AUTH_CONFIG }} DOCKER_AUTH_CONFIG: ${{ secrets.DOCKER_AUTH_CONFIG }}
run: | run: |