Feat/1.5.0 #36
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 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 Installers | |
on: | |
workflow_call: | |
pull_request: | |
branches: [master] | |
env: | |
DEV_IDENTITY: BXPZTQZ35S # Your Apple Dev identity, something like BXPZTQZ35S | |
PRIMARY_BUNDLE_ID: org.janelia.saalfeldlab.Paintera # Unique to your app, often the launcher class | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest, macos-14] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set Version | |
shell: bash | |
run: | | |
short_version=`git rev-parse --short HEAD` | |
echo "VERSION=$short_version" >> $GITHUB_ENV | |
- name: Download Wix | |
uses: i3h/download-release-asset@v1 | |
if: matrix.os == 'windows-latest' | |
with: | |
owner: wixtoolset | |
repo: wix3 | |
tag: wix3112rtm | |
file: wix311-binaries.zip | |
- name: Decompress Wix | |
uses: DuckSoft/[email protected] | |
if: matrix.os == 'windows-latest' | |
with: | |
pathSource: wix311-binaries.zip | |
pathTarget: ./target/wix | |
- name: Add Wix to Path | |
run: echo "$HOME/target/wix" >> $GITHUB_PATH | |
if: matrix.os == 'windows-latest' | |
- uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 21 | |
distribution: 'liberica' | |
java-package: jdk+fx | |
cache: 'maven' | |
- name: "Build with Maven" | |
if: matrix.os != 'macos-latest' && matrix.os != 'macos-14' | |
run: mvn -B clean install -DskipTests -Pbuild-installer "-Dmatrix.os=${{ matrix.os }}" --file pom.xml | |
- name: "Build with Maven (macOS No Signing)" | |
env: | |
MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }} | |
MACOS_CERTIFICATE_PWD: ${{ secrets.MACOS_CERTIFICATE_PWD }} | |
if: ${{ env.MACOS_CERTIFICATE == null && (matrix.os == 'macos-latest' || matrix.os == 'macos-14') }} | |
run: mvn -B clean install -DskipTests -Pbuild-installer -Djavafx.platform=mac "-Dmatrix.os=${{ matrix.os }}" --file pom.xml | |
- name: Upload Installers | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Paintera-${{ matrix.os }}-${{ env.VERSION }} | |
path: | | |
${{ env.DMG_PATH }} | |
./target/installer-${{ matrix.os }}/* |