This message was deleted.
# dotnet
s
This message was deleted.
c
Once the Pulumi CLI is installed in your build agent, you can simply use a
CmdLine
task to run regular
pulumi config set ...
commands. The Pulumi task extension currently doesn’t have an “install only” mode, but you could easily work around that by simply running the “stack” command first, then in the next step add one of these https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/utility/command-line?view=azure-devops&tabs=yaml
Copy code
# Command line
# Run a command line script using Bash on Linux and macOS and cmd.exe on Windows
- task: CmdLine@2
  inputs:
    script: |
      # Note that the build variables will need to use the env var syntax when accessing them inside a script task.
      pulumi config set ...
      pulumi config set ...
👍 1