Skip to content

Commit 01e9e36

Browse files
committed
Fix quality gate
1 parent 3deccc3 commit 01e9e36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/quality_gate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: dart-lang/setup-dart@v1
2020
- name: Load test credentials
2121
run: |
22-
echo "${{ secrets.test_service_account }}" > test/service-account.json
22+
echo "${{ secrets.test_service_account }}" | base64 -d - > test/service-account.json
2323
echo "const apiKey = '${{ secrets.test_api_key }}';" > test/test_config.dart
2424
echo "const projectId = '${{ secrets.test_project_id }}';" >> test/test_config.dart
2525
echo "const email = '${{ secrets.test_email }}';" >> test/test_config.dart

0 commit comments

Comments
 (0)