Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: artifact with this name already exists failure fix #718

Merged
merged 7 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/setup-java@v1.4.0
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