-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from kaleidot725/feature/delete_jbr
Feature/delete jbr
- Loading branch information
Showing
35 changed files
with
169 additions
and
414 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Build & Ship | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
desktop-build: | ||
runs-on: macos-latest | ||
timeout-minutes: 45 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'corretto' | ||
java-version: '17' | ||
|
||
- name: Build exe app | ||
run: | | ||
.\gradlew packageReleaseExe | ||
- name: Archive Artifacts Release | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Windows Release | ||
if-no-files-found: ignore | ||
path: build/compose/binaries/main-release/dmg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Build & Ship | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
desktop-build: | ||
runs-on: windows-latest | ||
timeout-minutes: 45 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'corretto' | ||
java-version: '17' | ||
|
||
- name: Build exe app | ||
run: | | ||
.\gradlew packageUberJarForCurrentOS | ||
.\gradlew createDistributable | ||
.\gradlew packageExe | ||
.\gradlew packageReleaseExe | ||
- name: Archive Artifacts Release | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Windows Release | ||
if-no-files-found: ignore | ||
path: build/compose/binaries/main-release/exe |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.