in src/pipeline.ts [519:532]
private stepsToUploadAssembly(dir: string): github.JobStep[] {
if (this.preSynthed) {
return [];
}
return [{
name: `Upload ${CDKOUT_ARTIFACT}`,
uses: 'actions/upload-artifact@v2.1.1',
with: {
name: CDKOUT_ARTIFACT,
path: dir,
},
}];
}