We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ad5267 commit 023c201Copy full SHA for 023c201
1 file changed
.github/workflows/setup-stackql.yml
@@ -40,7 +40,7 @@ jobs:
40
STACKQL_GITHUB_CREDS: ${{ secrets.STACKQL_GITHUB_CREDS }}
41
42
- name: Prep Google Creds (Windows)
43
- if: ${{ matrix.os }} == 'windows-latest'
+ if: ${{ matrix.os == 'windows-latest'}}
44
run: | ## use the secret to create json file
45
$GoogleCreds = [System.Environment]::GetEnvironmentVariable("GOOGLE_CREDS_ENV")
46
$GoogleCredsDecoded = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($GoogleCreds))
@@ -50,7 +50,7 @@ jobs:
50
GOOGLE_CREDS_ENV: ${{ secrets.GOOGLE_CREDS }}
51
52
- name: Prep Google Creds (bash)
53
- if: ${{ matrix.os }} != 'windows-latest'
+ if: ${{ matrix.os != 'windows-latest' }}
54
55
sudo echo ${{ secrets.GOOGLE_CREDS }} | base64 -d > sa-key.json
56
0 commit comments