We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e1b25f commit 7536a6eCopy full SHA for 7536a6e
.github/workflows/release.yml
@@ -97,7 +97,7 @@ jobs:
97
98
- uses: actions/upload-artifact@v4
99
with:
100
- name: Build
+ name: Build_${{ matrix.thread }}
101
path: Build_${{ matrix.thread }}.zip
102
103
upload:
@@ -110,10 +110,14 @@ jobs:
110
111
- uses: actions/download-artifact@v4
112
113
+ merge-multiple: true
114
path: artifacts/
115
+ pattern: Build_*
116
117
- name: Unpack
- run: unzip -d build "artifacts/Build/*.zip"
118
+ run: |
119
+ ls --recursive artifacts
120
+ unzip -d build "artifacts/*.zip"
121
122
- name: Prepare debug info
123
run: |
0 commit comments