You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const pipeline = new CodePipeline(this, 'Pipeline', {
pipelineName: 'MyPipeline',
synth: new ShellStep('Synth', {
input: CodePipelineSource.gitHub('OWNER/REPO', 'main'),
commands: ['npm ci', 'npm run build', 'npx cdk synth']
})
});
Can you add example for code pipelines that has multiple input sources (possibly with different language, like CDK code in typescript and lambda in java)?
The text was updated successfully, but these errors were encountered:
Can you add example for code pipelines that has multiple input sources (possibly with different language, like CDK code in typescript and lambda in java)?
The text was updated successfully, but these errors were encountered: