Skip to content

Commit 4237f35

Browse files
committed
Fix Bash command for creating Google credentials file.
1 parent 258646c commit 4237f35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/download.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: pip install -r requirements.txt
4040

4141
- name: Create credentials file for Google
42-
run: echo "$GOOGLE_SERVICE_ACCOUNT" | base64 -d >> services.json
42+
run: (echo $GOOGLE_SERVICE_ACCOUNT | base64 -di) >> services.json
4343

4444
- name: Download file from Google Drive
4545
run: python3 ./GoogleDriveFileDownloader.py

0 commit comments

Comments
 (0)