Skip to content

Commit

Permalink
Try base64
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisGV04 committed Sep 14, 2023
1 parent 47eb76a commit 2ba074c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Add envirnonment variables
run: |
touch .env
echo "${{ secrets.CMS_ENV }}" > .env
echo "${{ secrets.CMS_ENV }}" | base64 --decode > .env
- run: pnpm build

deploy-client:
Expand Down Expand Up @@ -62,5 +62,5 @@ jobs:
- name: Add envirnonment variables
run: |
touch .env
echo "${{ secrets.CLIENT_ENV }}" > .env
echo "${{ secrets.CLIENT_ENV }}" | base64 --decode > .env
- run: pnpm build

0 comments on commit 2ba074c

Please sign in to comment.