Skip to content

Commit 7f02f9a

Browse files
committed
Fix service account key setup in workflow
1 parent aa28b48 commit 7f02f9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Configure gsutil to use service account
4040
run: |
41-
echo ${{ secrets.GCP_SERVICE_ACCOUNT_KEY }} > $HOME/gcp-key.json
41+
printf "%s" "${{ secrets.GCP_SERVICE_ACCOUNT_KEY }}" > $HOME/gcp-key.json
4242
gcloud auth activate-service-account --key-file=$HOME/gcp-key.json
4343
4444
- name: Deploy to GCS

0 commit comments

Comments
 (0)