Skip to content

Commit 5114a4a

Browse files
committed
Patched for v4 of upload/download-artifact actions
1 parent 75c5346 commit 5114a4a

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323

2424
- uses: actions/upload-artifact@v4
2525
with:
26+
name: artifacts-amd64
2627
path: build/**/*.deb
2728

2829

@@ -49,6 +50,7 @@ jobs:
4950

5051
- uses: actions/upload-artifact@v4
5152
with:
53+
name: artifacts-arm64
5254
path: build/**/*.deb
5355

5456

@@ -68,6 +70,7 @@ jobs:
6870

6971
- uses: actions/upload-artifact@v4
7072
with:
73+
name: artifacts-appimage
7174
path: build/**.AppImage
7275

7376

@@ -87,6 +90,7 @@ jobs:
8790

8891
- uses: actions/upload-artifact@v4
8992
with:
93+
name: artifacts-windows
9094
path: build/windows/**.7z
9195

9296

@@ -97,6 +101,10 @@ jobs:
97101

98102
steps:
99103
- uses: actions/download-artifact@v4
104+
with:
105+
path: artifacts
106+
pattern: artifacts-*
107+
merge-multiple: true
100108

101109
- name: List artifacts
102110
run: ls -R
@@ -105,6 +113,6 @@ jobs:
105113
uses: softprops/action-gh-release@v2
106114
with:
107115
files: |
108-
artifact/**/**.deb
109-
artifact/**.AppImage
110-
artifact/**.7z
116+
artifacts/**/**.deb
117+
artifacts/**.AppImage
118+
artifacts/**.7z

0 commit comments

Comments
 (0)