Skip to content

Commit

Permalink
Another
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisGV04 committed Sep 14, 2023
1 parent e1bdd75 commit 47eb76a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
cache-dependency-path: './server/pnpm-lock.yaml' # Needed to use multiple directories
- run: pnpm install
- name: Add envirnonment variables
run: echo "${{ secrets.CMS_ENV }}" > .env
run: |
touch .env
echo "${{ secrets.CMS_ENV }}" > .env
- run: pnpm build

deploy-client:
Expand Down Expand Up @@ -58,5 +60,7 @@ jobs:
cache-dependency-path: './client/pnpm-lock.yaml' # Needed to use multiple directories
- run: pnpm install
- name: Add envirnonment variables
run: echo "${{ secrets.CLIENT_ENV }}" > .env
run: |
touch .env
echo "${{ secrets.CLIENT_ENV }}" > .env
- run: pnpm build

0 comments on commit 47eb76a

Please sign in to comment.