Skip to content

Commit

Permalink
ci(desktop, macOS): package dmg
Browse files Browse the repository at this point in the history
  • Loading branch information
Irineu333 committed Oct 29, 2024
1 parent df4b1b9 commit 5d012e5
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,25 @@ jobs:
with:
name: NeoRegex-windows-packages
path: application/build/compose/binaries/main-release/exe/*.exe
path: application/build/distribution/*.exe

build-macos:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup JDK
# TODO: replace this once https://github.com/actions/setup-java/pull/637 gets merged.
uses: gmitch215/setup-java@6d2c5e1f82f180ae79f799f0ed6e3e5efb4e664d
with:
java-version: '17'
distribution: 'jetbrains'

- name: Package dmg
run: ./gradlew application:packageReleaseDmg

- name: Upload
uses: actions/upload-artifact@v4
with:
name: NeoRegex-macos-packages
path: application/build/compose/binaries/main-release/dmg/*.dmg

0 comments on commit 5d012e5

Please sign in to comment.