-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
In cases where a self-hosted runner is being used, the source code may be baked into the runner. In those cases, an additional source step is unnecessary.
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
### Improvements | ||
|
||
- Make SourceContext optional in DeploymentSettings [#427](https://github.com/pulumi/pulumi-pulumiservice/pulls/427) | ||
|
||
In some advanced use cases, for example if your source code is baked into a custom image, or you are obtaining | ||
the source code from a different source, you may not want to specify a `SourceContext` in your `DeploymentSettings`. | ||
|
||
### Bug Fixes | ||
|
||
### Miscellaneous |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: yaml-deployment-settings-example | ||
runtime: yaml | ||
description: Deployment settings test | ||
resources: | ||
my_settings: | ||
type: pulumiservice:DeploymentSettings | ||
properties: | ||
organization: service-provider-test-org | ||
project: yaml-deployment-settings-example | ||
stack: test-stack-${digits} | ||
operationContext: | ||
preRunCommands: | ||
- yarn | ||
- ls -al | ||
environmentVariables: | ||
TEST_VAR: "test-value" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.