We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6eeb889 commit 42094c9Copy full SHA for 42094c9
1 file changed
.github/workflows/cat-test-examples.yml
@@ -35,6 +35,13 @@ jobs:
35
- name: Install the project
36
run: uv sync --all-extras --dev
37
38
+ - name: Check if GOOGLE_CREDENTIALS is set
39
+ run: |
40
+ if [ -z "${{ secrets.GOOGLE_CREDENTIALS }}" ]; then
41
+ echo "Error: GOOGLE_CREDENTIALS secret is not set!"
42
+ exit 1
43
+ fi
44
+
45
- name: Authenticate to Google Cloud
46
uses: google-github-actions/auth@v2
47
with:
0 commit comments