Skip to content

Commit be4a9aa

Browse files
committed
Python zip output path fix
1 parent 15270f3 commit be4a9aa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

infrastructure-cdk/lib/constructs/python-build-pipeline.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ export class PythonBuildPipeline extends Construct {
5959
},
6060
artifacts: {
6161
files: [
62-
`${s3BasePath}/${props.appName}.zip`
62+
`${s3BasePath}/*.zip`
6363
],
64-
'discard-paths': true,
64+
'discard-paths': false,
6565
'base-directory': directory
6666
}
6767
});
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {ApplicationRuntime} from "./constructs/application-runtime";
22

3-
export const APPLICATION_NAME = "kinesis-analytics-application"
3+
export const APPLICATION_NAME = "kinesis-analytics-application-python"
44
export const BUILD_FOR_RUNTIME = ApplicationRuntime.PYTHON
55
export const SOURCE_CODE_ZIP = "automate-deployment-and-version-update-of-kda-application.zip"
66
export const ASSET_BUCKET_EXPORT_NAME = "Blog::Artifact::BucketName"

0 commit comments

Comments
 (0)