We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c68624e commit a8527d3Copy full SHA for a8527d3
1 file changed
.github/workflows/setup-stackql.yml
@@ -100,8 +100,8 @@ 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)
104
- $decoded = [System.Convert]::FromBase64String(${{ secrets.GOOGLE_CREDS }})
+ $secrets = (Get-Content env:GOOGLE_CREDS)
+ $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}"
107
env:
0 commit comments