Skip to content

Commit

Permalink
update deployment workflow to use GitHub secrets for SITE_URL and PUB…
Browse files Browse the repository at this point in the history
…LIC_CONTACT_URL instead of environment variables
  • Loading branch information
ipatate committed Oct 23, 2024
1 parent 4226af1 commit a8917f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: 🚀 Deploy website on push
jobs:
web-deploy:
env:
SITE_URL: ${{ env.SITE_URL }}
PUBLIC_CONTACT_URL: ${{ env.PUBLIC_CONTACT_URL }}
SITE_URL: ${{ secrets.SITE_URL }}
PUBLIC_CONTACT_URL: ${{ secrets.PUBLIC_CONTACT_URL }}
name: 🎉 Deploy
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit a8917f7

Please sign in to comment.