We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57f804c commit a70ec02Copy full SHA for a70ec02
1 file changed
.github/workflows/cloudflare-pages-runtime.yml
@@ -28,13 +28,9 @@ jobs:
28
exit 1
29
fi
30
31
- - name: 📁 Create google-services.json
+ - name: 📁 Set Google services environment variable
32
run: |
33
- echo "$GOOGLE_SERVICES_JSON_BASE64" | base64 --decode > google-services.json
34
- if ! jq empty google-services.json; then
35
- echo "❌ google-services.json is invalid"
36
- exit 1
37
- fi
+ echo "GOOGLE_SERVICES_JSON=$(echo "$GOOGLE_SERVICES_JSON_BASE64" | base64 --decode)" >> $GITHUB_ENV
38
env:
39
GOOGLE_SERVICES_JSON_BASE64: ${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}
40
@@ -49,7 +45,8 @@ jobs:
49
45
50
46
- name: 📥 Install dependencies
51
47
run: pnpm install --frozen-lockfile
52
-
48
+ - name: 🔧 Generate Prisma client
+ run: pnpm prisma generate
53
- name: 🏗 Build Next.js for runtime
54
55
NEXT_OUTPUT_MODE: standalone
0 commit comments