Skip to content

Commit

Permalink
add atomic loader to deployment config
Browse files Browse the repository at this point in the history
  • Loading branch information
fpbrault committed Nov 19, 2024
1 parent 587494d commit c9dc1f2
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .deployment.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,42 @@
}
}
},
{
"id": "deploy-atomic-patch-loader-to-s3-version",
"s3": {
"disabled": $[IS_NIGHTLY],
"bucket": "{terraform.infra.infra.bucket_binaries}",
"directory": "proda/StaticCDN/atomic/v$[ATOMIC_PATCH_VERSION]/loader",
"source": "packages/atomic/dist/loader",
"parameters": {
"acl": "public-read"
}
}
},
{
"id": "deploy-atomic-minor-loader-to-s3-version",
"s3": {
"disabled": $[IS_NIGHTLY],
"bucket": "{terraform.infra.infra.bucket_binaries}",
"directory": "proda/StaticCDN/atomic/v$[ATOMIC_MINOR_VERSION]/loader",
"source": "packages/atomic/dist/loader",
"parameters": {
"acl": "public-read"
}
}
},
{
"id": "deploy-atomic-major-loader-to-s3-version",
"s3": {
"disabled": $[IS_NIGHTLY],
"bucket": "{terraform.infra.infra.bucket_binaries}",
"directory": "proda/StaticCDN/atomic/v$[ATOMIC_MAJOR_VERSION]/loader",
"source": "packages/atomic/dist/loader",
"parameters": {
"acl": "public-read"
}
}
},
{
"id": "deploy-atomic-minor-storybook-to-s3-version",
"s3": {
Expand Down

0 comments on commit c9dc1f2

Please sign in to comment.