We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f7ece3 commit a742dd0Copy full SHA for a742dd0
.github/workflows/PR_Check.yml
@@ -18,6 +18,17 @@ jobs:
18
with:
19
node-version: '18'
20
21
+ - name: Generate environment.ts from secrets
22
+ shell: bash
23
+ run: |
24
+ cat > src/environments/environment.ts <<'EOF'
25
+ export const environment = {
26
+ production: false,
27
+ supabaseUrl: '${{ secrets.SUPABASE_URL }}',
28
+ supabaseKey: '${{ secrets.SUPABASE_ANON_KEY }}',
29
+ };
30
+ EOF
31
+
32
- name: Install dependencies
33
run: npm ci
34
0 commit comments