Skip to content

Commit 93914c6

Browse files
committed
chore: Add environment variables for authentication and database configuration in workflow files
1 parent 556cc79 commit 93914c6

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/content-check.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ jobs:
2222
env:
2323
NEXT_TELEMETRY_DISABLED: "1"
2424
CI: "true"
25+
AUTH_SECRET: ${{ secrets.AUTH_SECRET }}
26+
AUTH_GITHUB_ID: ${{ secrets.AUTH_GITHUB_ID }}
27+
AUTH_GITHUB_SECRET: ${{ secrets.AUTH_GITHUB_SECRET }}
28+
DATABASE_URL: ${{ secrets.DATABASE_URL }}
2529
steps:
2630
- uses: actions/checkout@v4
2731

.github/workflows/deploy.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
env:
1313
NEXT_TELEMETRY_DISABLED: "1"
1414
CI: "true"
15+
AUTH_SECRET: ${{ secrets.AUTH_SECRET }}
16+
AUTH_GITHUB_ID: ${{ secrets.AUTH_GITHUB_ID }}
17+
AUTH_GITHUB_SECRET: ${{ secrets.AUTH_GITHUB_SECRET }}
18+
DATABASE_URL: ${{ secrets.DATABASE_URL }}
1519
steps:
1620
- uses: actions/checkout@v4
1721

0 commit comments

Comments
 (0)