is there example to deploy aws resources using pul...
# typescript
r
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
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:
Copy code
- 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
upsert works thanks
🎉 1