Skip to content

Commit

Permalink
build: artifact with this name already exists failure fix (#718)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinayagarwal authored Sep 24, 2024
1 parent cc24f2a commit e10bbdd
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bundles-kit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ jobs:
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: artifacts
name: scenebuilder-kit-${{ inputs.project-version }}.jar
path: kit/target/lib/*.jar
8 changes: 7 additions & 1 deletion .github/workflows/bundles-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,13 @@ jobs:
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: artifacts
name: SceneBuilder-${{ inputs.project-version }}.deb
path: |
app/target/install/*.deb
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: SceneBuilder-${{ inputs.project-version }}.rpm
path: |
app/target/install/*.rpm
2 changes: 1 addition & 1 deletion .github/workflows/bundles-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,5 +114,5 @@ jobs:
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: artifacts
name: SceneBuilder-${{ inputs.project-version }}-amd64.dmg
path: ${{ steps.outputfile.outputs.path }}
2 changes: 1 addition & 1 deletion .github/workflows/bundles-mac_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,5 +115,5 @@ jobs:
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: artifacts
name: SceneBuilder-${{ inputs.project-version }}-aarch64.dmg
path: ${{ steps.outputfile.outputs.path }}
2 changes: 1 addition & 1 deletion .github/workflows/bundles-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +96,5 @@ jobs:
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: artifacts
name: SceneBuilder-${{ inputs.project-version }}.msi
path: app/target/install/*.msi
3 changes: 3 additions & 0 deletions .github/workflows/early-access.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ jobs:

- name: Download all build artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
merge-multiple: true

- name: Set up Java
uses: oracle-actions/[email protected]
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,9 @@ jobs:

- name: Download all build artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
merge-multiple: true

- name: Set Release Version
run: |
Expand Down

0 comments on commit e10bbdd

Please sign in to comment.