Skip to content

Commit

Permalink
Merge pull request #19 from TomasKetterer/Add-env-workflow
Browse files Browse the repository at this point in the history
added env
  • Loading branch information
TomasKetterer authored Oct 29, 2024
2 parents 608e447 + b9bca24 commit 53f79eb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: '18.18.0'

- name: Create .env file
run: |
echo "REACT_APP_AUTH0_DOMAIN=${{ secrets.REACT_APP_AUTH0_DOMAIN }}" >> .env
echo "REACT_APP_AUTH0_CLIENT_ID=${{ secrets.REACT_APP_AUTH0_CLIENT_ID }}" >> .env
echo "REACT_APP_API_URL=${{ secrets.REACT_APP_API_URL }}" >> .env
echo "FRONTEND_URL=${{ secrets.FRONTEND_URL }}" >> .env
- name: Install dependencies and build project
run: |
Expand Down

0 comments on commit 53f79eb

Please sign in to comment.