purple-train-14007
09/08/2021, 7:32 PMbillowy-army-68599
09/08/2021, 7:37 PMgo-cloud
for our blob support, so you need to configure the environment variables as defined here:
https://gocloud.dev/howto/blob/#azure
AZURE_STORAGE_ACCOUNT
and then either
AZURE_STORAGE_KEY
or
AZURE_STORAGE_SAS_TOKEN
purple-train-14007
09/08/2021, 8:16 PMsteps:
- uses: actions/checkout@v2
- name: Integration Testing
env:
STORAGE_ACCOUNT: ${{secrets.SEA_STORAGE_ACCNT}}
STORAGE_TOKEN: ${{secrets.SEA_STORAGE_ACCN_PWD}}
run: |
$env:AZURE_STORAGE_ACCOUNT = $env.STORAGE_ACCOUNT
$env:AZURE_STORAGE_SAS_TOKEN = $env.STORAGE_TOKEN
pulumi login --cloud-url <azblob://pulumi>
shell: PowerShell
billowy-army-68599
09/08/2021, 9:02 PMpurple-train-14007
09/08/2021, 9:42 PMsteps:
- uses: actions/checkout@v2
- name: Integration Testing
run: |
$env:AZURE_STORAGE_ACCOUNT = "${{ secrets.SEA_STORAGE_ACCNT }}"
$env:AZURE_STORAGE_SAS_TOKEN = "${{ secrets.SEA_STORAGE_ACCN_PWD }}"
pulumi login --cloud-url <azblob://pulumi>
Set-Location -Path .\src\Azure_AD_Network
pulumi stack ls
shell: PowerShell