Skip to content

Commit

Permalink
moved non-sensitive secrets to variables
Browse files Browse the repository at this point in the history
  • Loading branch information
PipeItToDevNull committed Dec 8, 2024
1 parent b140c24 commit 695ab03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/azure-swa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
- name: Create .env file
uses: SpicyPizza/create-envfile@v1
with:
envkey_REACT_APP_SITE_NAME: ${{ secrets.REACT_APP_SITE_NAME }}
envkey_REACT_APP_REPO_URL: ${{ secrets.REACT_APP_REPO_URL }}
envkey_REACT_APP_API_URL: ${{ secrets.REACT_APP_API_URL }}
envkey_REACT_APP_SITE_NAME: ${{ variables.REACT_APP_SITE_NAME }}
envkey_REACT_APP_REPO_URL: ${{ variables.REACT_APP_REPO_URL }}
envkey_REACT_APP_API_URL: ${{ variables.REACT_APP_API_URL }}
directory: swa

- name: Build And Deploy
Expand Down

0 comments on commit 695ab03

Please sign in to comment.