Skip to content

Commit d70a112

Browse files
committed
CF pages debugging.
1 parent dae7fdc commit d70a112

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/cloudflare-pages-runtime.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@ jobs:
3030
3131
- name: 📁 Set Google services environment variable
3232
run: |
33-
echo 'GOOGLE_SERVICES_JSON<<EOF' >> $GITHUB_ENV
34-
base64 --decode <<< "$GOOGLE_SERVICES_JSON_BASE64" >> $GITHUB_ENV
35-
echo 'EOF' >> $GITHUB_ENV
33+
echo "$GOOGLE_SERVICES_JSON_BASE64" | base64 -d > /tmp/google-services.json
34+
echo "GOOGLE_SERVICES_JSON<<EOF" >> $GITHUB_ENV
35+
cat /tmp/google-services.json >> $GITHUB_ENV
36+
echo "EOF" >> $GITHUB_ENV
3637
env:
3738
GOOGLE_SERVICES_JSON_BASE64: ${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}
3839

0 commit comments

Comments
 (0)