File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -94,11 +94,12 @@ jobs:
94
94
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
95
95
with :
96
96
ref : ${{ github.sha }}
97
- - name : Download CDK layer artifact
97
+ - name : Download CDK layer artifacts
98
98
uses : actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
99
99
with :
100
- name : cdk-layer-stack
101
- path : cdk-layer-stack/
100
+ path : cdk-layer-stack
101
+ pattern : cdk-layer-stack-* # merge all Layer artifacts created per region earlier (reusable_deploy_layer_stack.yml; step "Save Layer ARN artifact")
102
+ merge-multiple : true
102
103
- name : Replace layer versions in documentation
103
104
run : |
104
105
ls -la cdk-layer-stack/
Original file line number Diff line number Diff line change 93
93
if : ${{ inputs.stage == 'PROD' }}
94
94
uses : actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
95
95
with :
96
- name : cdk-layer-stack
96
+ name : cdk-layer-stack-${{ matrix.region }}
97
97
path : ./cdk-layer-stack/* # NOTE: upload-artifact does not inherit working-directory setting.
98
98
if-no-files-found : error
99
99
retention-days : 1
100
- overwrite : true
101
100
- name : CDK deploy canary
102
101
run : npm run cdk -w layers -- deploy --app cdk.out --context region=${{ matrix.region }} 'CanaryStack' --require-approval never --verbose --outputs-file cdk-outputs.json
You can’t perform that action at this time.
0 commit comments