Move env file creation to the right place
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 3m2s

This commit is contained in:
2024-01-01 18:48:58 -05:00
parent 27a476ae00
commit 284d5ffcb4

View File

@@ -10,12 +10,6 @@ jobs:
build:
runs-on: ubuntu-18.04
steps:
- name: Create env file
run: |
echo "${{ vars.ENV_FILE }}" > .env.local
- name: Show env file
run: |
/bin/cat .env.local
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
@@ -28,6 +22,12 @@ jobs:
run: yarn install
- name: Install Quasar CLI
run: yarn global add @quasar/cli
- name: Create env file
run: |
echo "${{ vars.ENV_FILE }}" > .env.local
- name: Show env file
run: |
/bin/cat .env.local
- name: Build Project
run: quasar build -m pwa
- name: Get Version Number