Skip to content

Commit dca1793

Browse files
committed
chore: Update macOS runner and streamline release artifacts
This commit updates the GitHub Actions workflow for building the desktop application. The macOS Intel build runner has been updated from `macos-13` to `macos-15-intel`. Additionally, the build process has been simplified by removing the `packageUberJarForCurrentOS` Gradle task, as it is redundant. The release artifact configuration has also been cleaned up to only include essential installer formats (`.dmg`, `.msi`, `.deb`), removing `.pkg`, `.exe`, `.rpm`, and `.jar` files.
1 parent bf1eb1f commit dca1793

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-desktop.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ jobs:
7676
uses: softprops/action-gh-release@v2
7777
with:
7878
files: |
79-
artifacts/build-macos-arm/**/*.dmg
80-
artifacts/build-macos-intel/**/*.dmg
81-
artifacts/build-windows/**/*.msi
82-
artifacts/build-linux/**/*.deb
79+
artifacts/build-macos-arm/main-release/dmg/*.dmg
80+
artifacts/build-macos-intel/main-release/dmg/*.dmg
81+
artifacts/build-windows/main-release/msi/*.msi
82+
artifacts/build-linux/main-release/deb/*.deb
8383
draft: true
8484
tag_name: ${{ github.ref_name }}
8585
env:

0 commit comments

Comments
 (0)