We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0be0768 commit dae7fdcCopy full SHA for dae7fdc
1 file changed
.github/workflows/cloudflare-pages-runtime.yml
@@ -30,7 +30,9 @@ jobs:
30
31
- name: 📁 Set Google services environment variable
32
run: |
33
- echo "GOOGLE_SERVICES_JSON=$(echo "$GOOGLE_SERVICES_JSON_BASE64" | base64 --decode)" >> $GITHUB_ENV
+ echo 'GOOGLE_SERVICES_JSON<<EOF' >> $GITHUB_ENV
34
+ base64 --decode <<< "$GOOGLE_SERVICES_JSON_BASE64" >> $GITHUB_ENV
35
+ echo 'EOF' >> $GITHUB_ENV
36
env:
37
GOOGLE_SERVICES_JSON_BASE64: ${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}
38
0 commit comments