From 65bc36b77c163e371ad26e4e0bcc859367317e4d Mon Sep 17 00:00:00 2001 From: Philip Gai Date: Mon, 1 Nov 2021 07:15:41 +0000 Subject: [PATCH] Add missing shell props --- .github/workflows/composite/web-app-build-test/action.yml | 1 + .github/workflows/composite/web-app-create-release/action.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/composite/web-app-build-test/action.yml b/.github/workflows/composite/web-app-build-test/action.yml index c2cf70b..c780e7b 100644 --- a/.github/workflows/composite/web-app-build-test/action.yml +++ b/.github/workflows/composite/web-app-build-test/action.yml @@ -19,6 +19,7 @@ runs: cache-dependency-path: "${{ inputs.working-directory }}" - name: npm install, lint, build working-directory: "${{ inputs.working-directory }}" + shell: bash run: | npm install npm run lint diff --git a/.github/workflows/composite/web-app-create-release/action.yml b/.github/workflows/composite/web-app-create-release/action.yml index f80a260..036b9b0 100644 --- a/.github/workflows/composite/web-app-create-release/action.yml +++ b/.github/workflows/composite/web-app-create-release/action.yml @@ -20,6 +20,7 @@ runs: steps: - name: "Tar directory" working-directory: "${{ inputs.working-directory }}" + shell: bash run: tar -cvf release.tar "${{ inputs.dist-directory }}" - name: Bump version and push tag id: github-tag-action