Skip to content

Commit

Permalink
feat(pipelines): ShellScriptAction add option to configure codebuild …
Browse files Browse the repository at this point in the history
…environment

The build environment for the ShellScriptAction is hardcoded and set to LINUX_4_0.

This fix allows the build environment to be specified in the ShellScriptAction
fixes aws#10919
  • Loading branch information
tdikland committed Oct 30, 2020
1 parent bf24aad commit 4e16337
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/@aws-cdk/pipelines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,8 @@ stage.addActions(new ShellScriptAction({
vpc,
// Optionally specify SecurityGroups
securityGroups,
// ... more configuration ...
// Optionally specify a BuildEnvironment
environment,
}));
```

Expand Down

0 comments on commit 4e16337

Please sign in to comment.