Skip to content

Commit 116d3f9

Browse files
authored
Update gradle-build.yml
1 parent 20f2d2e commit 116d3f9

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.github/workflows/gradle-build.yml

+12-4
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,8 @@ jobs:
4848
- name: Upload binaries
4949
uses: actions/upload-artifact@v4
5050
with:
51-
name: application
51+
name: application-${{ matrix.os }}
5252
path: out/executable/
53-
merge-multiple: true
5453

5554
- name: Build RPMs with JPackage
5655
if: ${{ matrix.os == 'ubuntu-latest' }}
@@ -62,9 +61,18 @@ jobs:
6261
if: ${{ matrix.os == 'ubuntu-latest' }}
6362
uses: actions/upload-artifact@v4
6463
with:
65-
name: application
64+
name: application-rpm
6665
path: out/executable/
67-
merge-multiple: true
66+
67+
merge:
68+
runs-on: ubuntu-latest
69+
needs: gradle
70+
steps:
71+
- name: Merge Artifacts
72+
uses: actions/upload-artifact/merge@v4
73+
with:
74+
name: executables
75+
delete-merged: true
6876

6977
# - name: Rename win32 Binaries
7078
# if: ${{ matrix.arch == 'x86' }}

0 commit comments

Comments
 (0)