white-cat-90296
09/15/2021, 10:23 AMBitbucket Pipelines
yml file working with pulumi? I've integrated pulumi with GitHub Actions before which was super straight forward, but I can't seem to find a good reference for Bitbucket Pipelines. My first thought is using the pulumi/pulumi docker image and building on top of that, but I'd love to see some examples if you have any. Thanks!image: node:10.15.3
pipelines:
branches:
master:
- step:
name: Deploy with Pulumi
deployment: test
image: pulumi/pulumi
script:
- npm run <YOUR_INSTALL_SCRIPTS>
- cd <FOLDER_WHERE_PULUMI_IS>
- pulumi stack ls
- pulumi stack select <YOUR_STACK_NAME>
- pulumi up -y
little-cartoon-10569
09/15/2021, 8:32 PM--stack
option, instead of pulumi stack select
.--yes
instead of short ones like -y
.white-cat-90296
09/16/2021, 7:26 AM