Skip to content

Commit

Permalink
Update main.yml - added env vars from secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
neilshaabi authored Apr 30, 2024
1 parent 04b01ec commit 1b23747
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,17 @@ on:
permissions:
contents: read

jobs:
env:
ENV: ${{ secrets.ENV }}
SECRET_KEY: ${{ secrets.SECRET_KEY }}
MAIL_USERNAME: ${{ secrets.MAIL_USERNAME }}
MAIL_PASSWORD: ${{ secrets.MAIL_PASSWORD }}
STRIPE_SECRET_KEY: ${{ secrets.STRIPE_SECRET_KEY }}
STRIPE_PUBLISHABLE_KEY: ${{ secrets.STRIPE_PUBLISHABLE_KEY }}
STRIPE_WEBHOOK_SECRET: ${{ secrets.STRIPE_WEBHOOK_SECRET }}

jobs:
build:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 1b23747

Please sign in to comment.