File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -142,10 +142,22 @@ jobs:
142142 runs-on : ubuntu-latest
143143 if : github.event_name != 'pull_request'
144144 steps :
145+ - name : Download Linux
146+ uses : actions/download-artifact@v4
147+ with :
148+ name : llvm-linux-${{ needs.get-branch-name.outputs.branch }}
149+ path : " "
150+ merge-multiple : true
151+ - name : Download Windows
152+ uses : actions/download-artifact@v4
153+ with :
154+ name : llvm-win64-${{ needs.get-branch-name.outputs.branch }}
155+ path : " "
156+ merge-multiple : true
145157 - name : Publish Release
146158 uses : ncipollo/release-action@v1
147159 with :
148- artifacts : " llvm-linux-${{ needs.get-branch-name.outputs.branch }},llvm-win64-${{ needs.get-branch-name.outputs.branch }}"
160+ artifacts : " llvm-linux-${{ needs.get-branch-name.outputs.branch }}.zip ,llvm-win64-${{ needs.get-branch-name.outputs.branch }}.zip "
149161 artifactErrorsFailBuild : true
150162 artifactContentType : " application/zip"
151163 tag : " ${{ needs.get-branch-name.outputs.targettag }}"
You can’t perform that action at this time.
0 commit comments