Skip to content

Commit b74d819

Browse files
Pass in secret
1 parent 5f45958 commit b74d819

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ jobs:
1919
uses: actions/checkout@v4
2020

2121
- name: Run tests
22+
env:
23+
LOGFIRE_TOKEN: ${{ secrets.LOGFIRE_TOKEN }}
24+
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
25+
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
26+
SUPABASE_DB_URL: ${{ secrets.SUPABASE_DB_URL }}
2227
run: make test
2328

2429
- name: Show container logs on failure

.github/workflows/test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ jobs:
1616
uses: actions/checkout@v4
1717

1818
- name: Run tests
19+
env:
20+
LOGFIRE_TOKEN: ${{ secrets.LOGFIRE_TOKEN }}
21+
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
22+
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
23+
SUPABASE_DB_URL: ${{ secrets.SUPABASE_DB_URL }}
1924
run: make test
2025

2126
- name: Show container logs on failure

0 commit comments

Comments
 (0)