Skip to content

Commit

Permalink
followed suggestions on aws/aws-cdk#1588 (comment) to save on some ch…
Browse files Browse the repository at this point in the history
…aracters
  • Loading branch information
3p3r committed Apr 7, 2020
1 parent 0b4ce2a commit 4cdc597
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,10 @@ export class App extends cdk.App {
});

this._debug('creating an artifact to store Github source');
const githubSource = new codePipeline.Artifact();
const githubSource = new codePipeline.Artifact('S');
this._debug('creating an action that pulls source from Github');
const source = new codePipelineActions.GitHubSourceAction({
variablesNamespace: 'GH',
actionName: 'GitHub',
output: githubSource,
owner: git.owner,
Expand Down

0 comments on commit 4cdc597

Please sign in to comment.