Skip to content

Commit ba30246

Browse files
authored
unique artifact names for upload and merge for download
1 parent 047f41a commit ba30246

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release-lambda.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
if: ${{ success() }}
141141
uses: actions/upload-artifact@v4
142142
with:
143-
name: ${{ env.LAYER_NAME }}
143+
name: ${{ env.LAYER_NAME }}-${{ matrix.aws_region }}
144144
path: ${{ env.LAYER_NAME }}/${{ matrix.aws_region }}
145145

146146
- name: clean s3
@@ -160,8 +160,9 @@ jobs:
160160
- name: download layerARNs
161161
uses: actions/download-artifact@v4
162162
with:
163-
name: ${{ env.LAYER_NAME }}
163+
pattern: ${{ env.LAYER_NAME }}-*
164164
path: ${{ env.LAYER_NAME }}
165+
merge-multiple: true
165166

166167
- name: show layerARNs
167168
run: |

0 commit comments

Comments
 (0)