Skip to content

Commit 7ba662d

Browse files
committed
Fix artifact selection for releases
1 parent 7d1568f commit 7ba662d

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/redpoint.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff 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 }}"

0 commit comments

Comments
 (0)