Skip to content

Commit

Permalink
updates env vars in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
stolinski committed Sep 22, 2023
1 parent 98f73bb commit 69fb4d1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/playwright-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
- name: Run Playwright tests
run: pnpm run test
env:
PUBLIC_GITHUB_ID: ''
GH_SECRET: ''
PUBLIC_GITHUB_ID: ${{ secrets.PUBLIC_GITHUB_ID }}
GH_SECRET: ${{ secrets.GH_SECRET }}
DEEPGRAM_SECRET: ${{ secrets.DEEPGRAM_SECRET }}
PUBLIC_URL: ''
PUBLIC_URL: ${{ secrets.PUBLIC_URL }}
SENTRY_AUTH_TOKEN: ''
DATABASE_URL: ${{ secrets.DATABASE_URL }}
7 changes: 7 additions & 0 deletions .github/workflows/svelte_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,10 @@ jobs:

- name: Run Svelte Check
run: pnpm check
env:
PUBLIC_GITHUB_ID: ${{ secrets.PUBLIC_GITHUB_ID }}
GH_SECRET: ${{ secrets.GH_SECRET }}
DEEPGRAM_SECRET: ${{ secrets.DEEPGRAM_SECRET }}
PUBLIC_URL: ${{ secrets.PUBLIC_URL }}
SENTRY_AUTH_TOKEN: ''
DATABASE_URL: ${{ secrets.DATABASE_URL }}

0 comments on commit 69fb4d1

Please sign in to comment.