Skip to content

Commit f66a13c

Browse files
committed
Create info file on release creation
1 parent 5abcaf7 commit f66a13c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/redpoint.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,14 @@ jobs:
154154
name: llvm-win64-${{ needs.get-branch-name.outputs.branch }}
155155
path: ""
156156
merge-multiple: true
157+
- name: Create Info File
158+
run: |
159+
echo "linux=llvm-linux-${{ needs.get-branch-name.outputs.branch }}.zip" > info
160+
echo "win64=llvm-win64-${{ needs.get-branch-name.outputs.branch }}.zip" >> info
157161
- name: Publish Release
158162
uses: ncipollo/release-action@v1
159163
with:
160-
artifacts: "llvm-linux-${{ needs.get-branch-name.outputs.branch }}.zip,llvm-win64-${{ needs.get-branch-name.outputs.branch }}.zip"
164+
artifacts: "llvm-linux-${{ needs.get-branch-name.outputs.branch }}.zip,llvm-win64-${{ needs.get-branch-name.outputs.branch }}.zip,info"
161165
artifactErrorsFailBuild: true
162166
artifactContentType: "application/zip"
163167
tag: "${{ needs.get-branch-name.outputs.targettag }}"

0 commit comments

Comments
 (0)