-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Add Ubuntu deb release artifact #2474
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -194,6 +194,11 @@ jobs: | |
| platform: linux | ||
| target: AppImage | ||
| arch: x64 | ||
| - label: Ubuntu .deb x64 | ||
| runner: blacksmith-32vcpu-ubuntu-2404 | ||
| platform: linux | ||
| target: deb | ||
| arch: x64 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Linux updater metadata collision between AppImage and deb buildsMedium Severity Both the AppImage and deb builds will generate identically-named auto-update metadata files ( Additional Locations (1)Reviewed by Cursor Bugbot for commit 009af84. Configure here. |
||
| - label: Windows x64 | ||
| runner: blacksmith-32vcpu-windows-2025 | ||
| platform: win | ||
|
|
@@ -318,6 +323,7 @@ jobs: | |
| "release/*.dmg" \ | ||
| "release/*.zip" \ | ||
| "release/*.AppImage" \ | ||
| "release/*.deb" \ | ||
| "release/*.exe" \ | ||
| "release/*.blockmap" \ | ||
| "release/*.yml"; do | ||
|
|
@@ -485,6 +491,7 @@ jobs: | |
| release-assets/*.dmg | ||
| release-assets/*.zip | ||
| release-assets/*.AppImage | ||
| release-assets/*.deb | ||
| release-assets/*.exe | ||
| release-assets/*.blockmap | ||
| release-assets/*.yml | ||
|
|
@@ -505,6 +512,7 @@ jobs: | |
| release-assets/*.dmg | ||
| release-assets/*.zip | ||
| release-assets/*.AppImage | ||
| release-assets/*.deb | ||
| release-assets/*.exe | ||
| release-assets/*.blockmap | ||
| release-assets/*.yml | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate artifact name causes release workflow failure
High Severity
The new
Ubuntu .deb x64matrix entry hasplatform: linuxandarch: x64, identical to the existingLinux x64(AppImage) entry. The artifact upload step on line 357 derives its name fromdesktop-${{ matrix.platform }}-${{ matrix.arch }}, so both jobs producedesktop-linux-x64. Withactions/upload-artifact@v7, the second job to finish will fail because an artifact with that name already exists and nooverwrite: trueis set. The artifact name needs to incorporate thetargetto differentiate the two Linux builds.Additional Locations (1)
.github/workflows/release.yml#L354-L358Reviewed by Cursor Bugbot for commit fbd1741. Configure here.