Skip to content

Commit e10bbdd

Browse files
build: artifact with this name already exists failure fix (gluonhq#718)
1 parent cc24f2a commit e10bbdd

7 files changed

+17
-5
lines changed

.github/workflows/bundles-kit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ jobs:
4242
- name: Upload Artifact
4343
uses: actions/upload-artifact@v4
4444
with:
45-
name: artifacts
45+
name: scenebuilder-kit-${{ inputs.project-version }}.jar
4646
path: kit/target/lib/*.jar

.github/workflows/bundles-linux.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,13 @@ jobs:
101101
- name: Upload Artifact
102102
uses: actions/upload-artifact@v4
103103
with:
104-
name: artifacts
104+
name: SceneBuilder-${{ inputs.project-version }}.deb
105105
path: |
106106
app/target/install/*.deb
107+
108+
- name: Upload Artifact
109+
uses: actions/upload-artifact@v4
110+
with:
111+
name: SceneBuilder-${{ inputs.project-version }}.rpm
112+
path: |
107113
app/target/install/*.rpm

.github/workflows/bundles-mac.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,5 @@ jobs:
114114
- name: Upload Artifact
115115
uses: actions/upload-artifact@v4
116116
with:
117-
name: artifacts
117+
name: SceneBuilder-${{ inputs.project-version }}-amd64.dmg
118118
path: ${{ steps.outputfile.outputs.path }}

.github/workflows/bundles-mac_aarch64.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,5 +115,5 @@ jobs:
115115
- name: Upload Artifact
116116
uses: actions/upload-artifact@v4
117117
with:
118-
name: artifacts
118+
name: SceneBuilder-${{ inputs.project-version }}-aarch64.dmg
119119
path: ${{ steps.outputfile.outputs.path }}

.github/workflows/bundles-windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,5 @@ jobs:
9696
- name: Upload Artifact
9797
uses: actions/upload-artifact@v4
9898
with:
99-
name: artifacts
99+
name: SceneBuilder-${{ inputs.project-version }}.msi
100100
path: app/target/install/*.msi

.github/workflows/early-access.yml

+3
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@ jobs:
121121

122122
- name: Download all build artifacts
123123
uses: actions/download-artifact@v4
124+
with:
125+
path: artifacts
126+
merge-multiple: true
124127

125128
- name: Set up Java
126129
uses: oracle-actions/setup-java@v1.4.0

.github/workflows/release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,9 @@ jobs:
147147

148148
- name: Download all build artifacts
149149
uses: actions/download-artifact@v4
150+
with:
151+
path: artifacts
152+
merge-multiple: true
150153

151154
- name: Set Release Version
152155
run: |

0 commit comments

Comments
 (0)