https://pulumi.com logo
#general
Title
# general
g

great-byte-67992

06/22/2022, 4:22 AM
Hello, does anyone know how to use Pulumi's Github Actions
pulumi/actions@v3
with a cloud state backend? I've set my
azblob://
url but the action complains that "PULUMI_ACCESS_TOKEN must be set for login during non-interactive CLI sessions". I'm not using the Pulumi SaaS
Copy code
- name: Deploy
  uses: pulumi/actions@v3
  with:
    command: preview
    stack-name: mystack
    cloud-url: <azblob://my-azure-storage-container>
a

average-tiger-58107

06/22/2022, 4:47 AM
Have you tried setting it regardless? Even if you aren't using the backend, you are still using the SaaS in some capacity I would think
g

great-byte-67992

06/22/2022, 4:57 AM
Nah i'm not using the SaaS. Cloud state backends are used instead of the SaaS backend. I think i may have resolved the issue by exporting the "AZURE_STORAGE_ACCOUNT" environment variable. I'm thinking the github action error message may have been misleading.
73 Views