Skip to content

Commit 023c201

Browse files
fix if conditon
1 parent 7ad5267 commit 023c201

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/setup-stackql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
STACKQL_GITHUB_CREDS: ${{ secrets.STACKQL_GITHUB_CREDS }}
4141

4242
- name: Prep Google Creds (Windows)
43-
if: ${{ matrix.os }} == 'windows-latest'
43+
if: ${{ matrix.os == 'windows-latest'}}
4444
run: | ## use the secret to create json file
4545
$GoogleCreds = [System.Environment]::GetEnvironmentVariable("GOOGLE_CREDS_ENV")
4646
$GoogleCredsDecoded = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($GoogleCreds))
@@ -50,7 +50,7 @@ jobs:
5050
GOOGLE_CREDS_ENV: ${{ secrets.GOOGLE_CREDS }}
5151

5252
- name: Prep Google Creds (bash)
53-
if: ${{ matrix.os }} != 'windows-latest'
53+
if: ${{ matrix.os != 'windows-latest' }}
5454
run: | ## use the secret to create json file
5555
sudo echo ${{ secrets.GOOGLE_CREDS }} | base64 -d > sa-key.json
5656

0 commit comments

Comments
 (0)