We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3deccc3 commit 01e9e36Copy full SHA for 01e9e36
.github/workflows/quality_gate.yml
@@ -19,7 +19,7 @@ jobs:
19
- uses: dart-lang/setup-dart@v1
20
- name: Load test credentials
21
run: |
22
- echo "${{ secrets.test_service_account }}" > test/service-account.json
+ echo "${{ secrets.test_service_account }}" | base64 -d - > test/service-account.json
23
echo "const apiKey = '${{ secrets.test_api_key }}';" > test/test_config.dart
24
echo "const projectId = '${{ secrets.test_project_id }}';" >> test/test_config.dart
25
echo "const email = '${{ secrets.test_email }}';" >> test/test_config.dart
0 commit comments