https://pulumi.com logo
Title
r

refined-terabyte-65361

02/24/2022, 12:52 AM
is there example to deploy aws resources using pulumi and github actions ? tried using this example https://www.pulumi.com/docs/guides/continuous-delivery/github-actions/ but i got error stderr: error: no stack named 'dev' found
b

busy-journalist-6936

02/24/2022, 12:54 AM
This might be a poor implementation but it got my GHA started.
the pulumi GHA plugin looks to have a syntax that would work per:
- uses: pulumi/actions@v3
        with:
          command: preview
          stack-name: dev
        env:
          PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }}
but the stack would need to be created first
though
upsert
looks like a config option that should fix your issue perhaps? Doc ref
👀 1
✅ 1
r

refined-terabyte-65361

02/24/2022, 1:00 AM
upsert works thanks
🎉 1