Skip to content

Commit 5380a59

Browse files
committed
test
1 parent 09fee53 commit 5380a59

File tree

1 file changed

+7
-22
lines changed

1 file changed

+7
-22
lines changed

.github/workflows/make.yml

+7-22
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Upload Linux Artifact
3333
uses: actions/upload-artifact@v4
3434
with:
35-
name: linux-artifact
35+
name: linux-${{ env.VERSION }}
3636
path: out/make
3737

3838
windows:
@@ -56,7 +56,7 @@ jobs:
5656
- name: Upload Windows Artifact
5757
uses: actions/upload-artifact@v4
5858
with:
59-
name: windows-artifact
59+
name: windows-${{ env.VERSION }}
6060
path: out/make
6161

6262
macos:
@@ -80,38 +80,23 @@ jobs:
8080
- name: Upload macOS Artifact
8181
uses: actions/upload-artifact@v4
8282
with:
83-
name: macos-artifact
83+
name: macos-${{ env.VERSION }}
8484
path: out/make
8585

8686
release:
8787
needs: [linux, windows, macos]
8888
runs-on: ubuntu-latest
8989
steps:
90-
- name: Download Linux Artifact
90+
- name: Download Artifact
9191
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
10792

10893
- name: GH Release
10994
uses: softprops/[email protected]
11095
with:
11196
files: |
112-
dist/windows/*
113-
dist/linux/*
114-
dist/macos/*
97+
macos-${{ env.VERSION }}
98+
windows-${{ env.VERSION }}
99+
linux-${{ env.VERSION }}
115100
tag_name: ${{ env.VERSION }}
116101

117102
# - name: Upload Linux Asset

0 commit comments

Comments
 (0)