Skip to content

Commit 84e2c7f

Browse files
authored
Fix Release worklfow with upload-artefact breaking changes (#1035)
1 parent dbec93b commit 84e2c7f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
if: ${{ success() }}
106106
uses: actions/upload-artifact@v4
107107
with:
108-
name: ${{ env.LAYER_NAME }}
108+
name: ${{ env.LAYER_NAME }}-${{matrix.architecture}}-${{matrix.aws_region}}
109109
path: ${{ env.LAYER_NAME }}/${{ matrix.aws_region }}
110110
- name: clean s3
111111
if: always()
@@ -128,8 +128,9 @@ jobs:
128128
- name: download layerARNs
129129
uses: actions/download-artifact@v4
130130
with:
131-
name: ${{ env.LAYER_NAME }}
131+
pattern: ${{ env.LAYER_NAME }}-*
132132
path: ${{ env.LAYER_NAME }}
133+
merge-multiple: true
133134
- name: show layerARNs
134135
run: |
135136
for file in ${{ env.LAYER_NAME }}/*

0 commit comments

Comments
 (0)