We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8527d3 commit 28baf5dCopy full SHA for 28baf5d
1 file changed
.github/workflows/setup-stackql.yml
@@ -100,7 +100,7 @@ jobs:
100
- name: Use Google Provider
101
run: | ## use the secret to create json file
102
# sudo echo ${{ secrets.GOOGLE_CREDS }} | base64 -d > sa-key.json
103
- $secrets = (Get-Content env:GOOGLE_CREDS)
+ $secrets = ${{ secrets.GOOGLE_CREDS }}
104
$decoded = [System.Convert]::FromBase64String($secrets)
105
[System.Text.Encoding]::UTF8.GetString($decoded) | Set-Content sa-key.json
106
stackql exec -i ./examples/google-example.iql --auth="${AUTH}"
0 commit comments