-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
83 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ on: | |
jobs: | ||
build: | ||
|
||
runs-on: macos-latest | ||
runs-on: macos-12 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
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,55 @@ | ||
# This workflow will build a Java project with Maven | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | ||
|
||
name: Build macOS Installer | ||
|
||
on: | ||
workflow_dispatch: | ||
branches: [ master ] | ||
push: | ||
branches: [ master ] | ||
paths: | ||
- RCaNconstructor/** | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: 21.0.3 | ||
distribution: 'temurin' | ||
cache: 'maven' | ||
|
||
- name: Import signing certificate into keychain | ||
run: | | ||
KEYCHAIN_FILE=default.keychain | ||
KEYCHAIN_PASSWORD=myvoiceismypassport | ||
security create-keychain -p $KEYCHAIN_PASSWORD $KEYCHAIN_FILE | ||
security default-keychain -s $KEYCHAIN_FILE | ||
security unlock-keychain -p $KEYCHAIN_PASSWORD $KEYCHAIN_FILE | ||
security import <(echo $SIGNING_CERTIFICATE_P12_DATA | base64 --decode) \ | ||
-f pkcs12 \ | ||
-k $KEYCHAIN_FILE \ | ||
-P $SIGNING_CERTIFICATE_PASSWORD \ | ||
-T /usr/bin/codesign | ||
security set-key-partition-list -S apple-tool:,apple: -s -k $KEYCHAIN_PASSWORD $KEYCHAIN_FILE | ||
env: | ||
SIGNING_CERTIFICATE_P12_DATA: ${{ secrets.SIGNING_CERTIFICATE_P12_DATA }} | ||
SIGNING_CERTIFICATE_PASSWORD: ${{ secrets.SIGNING_CERTIFICATE_PASSWORD }} | ||
|
||
|
||
- name: Build with Maven | ||
run: mvn -B clean install --file RCaNconstructor/pom.xml | ||
- name: Update Automatic Release | ||
uses: marvinpinto/action-automatic-releases@latest | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN}}" | ||
automatic_release_tag: "macOSaarch64-latest" | ||
prerelease: true | ||
title: "macOS Development Build" | ||
files: ./RCaNconstructor/target/*.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,12 @@ | ||
|
||
These files are the same as those available from: | ||
|
||
https://gluonhq.com/products/javafx/ | ||
|
||
...included here to make it easier to just clone off this repository and immediately | ||
run the project. | ||
|
||
Please note that the JavaFX web libraries - the embedded WebKit browser components, | ||
are NOT included due to GitHub template size restrictions. You can download those | ||
from the link above and drop them into your own GitHub repo and they should work | ||
fine. |
Binary file not shown.
Binary file added
BIN
+2.46 MB
RCaNconstructor/macaarch64-javafx/javafx-jmods-16/javafx.controls.jmod
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.67 MB
RCaNconstructor/macaarch64-javafx/javafx-jmods-16/javafx.graphics.jmod
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+766 KB
RCaNconstructor/macaarch64-javafx/javafx-jmods-22.0.2/javafx.base.jmod
Binary file not shown.
Binary file added
BIN
+2.53 MB
RCaNconstructor/macaarch64-javafx/javafx-jmods-22.0.2/javafx.controls.jmod
Binary file not shown.
Binary file added
BIN
+138 KB
RCaNconstructor/macaarch64-javafx/javafx-jmods-22.0.2/javafx.fxml.jmod
Binary file not shown.
Binary file added
BIN
+4.7 MB
RCaNconstructor/macaarch64-javafx/javafx-jmods-22.0.2/javafx.graphics.jmod
Binary file not shown.
Binary file added
BIN
+1.57 MB
RCaNconstructor/macaarch64-javafx/javafx-jmods-22.0.2/javafx.media.jmod
Binary file not shown.
Binary file added
BIN
+97.8 KB
RCaNconstructor/macaarch64-javafx/javafx-jmods-22.0.2/javafx.swing.jmod
Binary file not shown.
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