From 45085301b075403bbbacfdae6c2589b6683b645a Mon Sep 17 00:00:00 2001 From: Christian Carlsson Date: Wed, 13 Nov 2024 09:18:20 +0000 Subject: [PATCH] fix deploy script --- .github/actions/deploy/web-app/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/deploy/web-app/action.yml b/.github/actions/deploy/web-app/action.yml index b0e927af..54fbc403 100644 --- a/.github/actions/deploy/web-app/action.yml +++ b/.github/actions/deploy/web-app/action.yml @@ -24,11 +24,14 @@ runs: - name: Install dependencies run: npm install + shell: bash - name: Build the Vue.js project run: npm run build + shell: bash - name: Deploy to S3 + shell: bash env: AWS_ACCESS_KEY_ID: ${{ inputs.aws_access_key_id }} AWS_SECRET_ACCESS_KEY: ${{ inputs.aws_secret_access_key }}