An open API service indexing awesome lists of open source software.

https://github.com/praneetloke/setup-pulumi-buildkite-plugin


https://github.com/praneetloke/setup-pulumi-buildkite-plugin

buildkite-plugin

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# Setup Pulumi

Installs [Pulumi](https://www.pulumi.com) for use in [Buildkite](https://buildkite.com) builds.

## Example

```yaml
steps:
- name: Pulumi preview
plugins:
- praneetloke/setup-pulumi
command: |
pulumi login
pulumi preview -s --cwd
```

## Select Pulumi version to install

By default, the latest released version of Pulumi will be installed.

You can select a version with the version parameter:

```yaml
steps:
- plugins:
- praneetloke/setup-pulumi:
version: 3.183.0
command: pulumi version
```