We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78b47c4 commit 5224eedCopy full SHA for 5224eed
1 file changed
.github/workflows/cloudflare-pages-runtime.yml
@@ -21,6 +21,23 @@ jobs:
21
- name: 🔍 Checkout repository
22
uses: actions/checkout@v4
23
24
+ - name: 🔒 Verify Google services secret exists
25
+ run: |
26
+ if [ -z "${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}" ]; then
27
+ echo "❌ GOOGLE_SERVICES_JSON_BASE64 secret is missing"
28
+ exit 1
29
+ fi
30
+
31
+ - name: 📁 Create google-services.json
32
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
37
38
+ env:
39
+ GOOGLE_SERVICES_JSON_BASE64: ${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}
40
41
- name: 📦 Install pnpm
42
run: npm install -g pnpm@10
43
0 commit comments