Commit 5380a59 1 parent 09fee53 commit 5380a59 Copy full SHA for 5380a59
File tree 1 file changed +7
-22
lines changed
1 file changed +7
-22
lines changed Original file line number Diff line number Diff line change 32
32
- name : Upload Linux Artifact
33
33
uses : actions/upload-artifact@v4
34
34
with :
35
- name : linux-artifact
35
+ name : linux-${{ env.VERSION }}
36
36
path : out/make
37
37
38
38
windows :
56
56
- name : Upload Windows Artifact
57
57
uses : actions/upload-artifact@v4
58
58
with :
59
- name : windows-artifact
59
+ name : windows-${{ env.VERSION }}
60
60
path : out/make
61
61
62
62
macos :
@@ -80,38 +80,23 @@ jobs:
80
80
- name : Upload macOS Artifact
81
81
uses : actions/upload-artifact@v4
82
82
with :
83
- name : macos-artifact
83
+ name : macos-${{ env.VERSION }}
84
84
path : out/make
85
85
86
86
release :
87
87
needs : [linux, windows, macos]
88
88
runs-on : ubuntu-latest
89
89
steps :
90
- - name : Download Linux Artifact
90
+ - name : Download Artifact
91
91
uses : actions/download-artifact@v4
92
- with :
93
- name : linux-artifact
94
- path : dist/linux
95
-
96
- - name : Download Windows Artifact
97
- uses : actions/download-artifact@v4
98
- with :
99
- name : windows-artifact
100
- path : dist/windows
101
-
102
- - name : Download macOS Artifact
103
- uses : actions/download-artifact@v4
104
- with :
105
- name : macos-artifact
106
- path : dist/macos
107
92
108
93
- name : GH Release
109
94
110
95
with :
111
96
files : |
112
- dist/windows/*
113
- dist/linux/*
114
- dist/macos/*
97
+ macos-${{ env.VERSION }}
98
+ windows-${{ env.VERSION }}
99
+ linux-${{ env.VERSION }}
115
100
tag_name : ${{ env.VERSION }}
116
101
117
102
# - name: Upload Linux Asset
You can’t perform that action at this time.
0 commit comments