Build and release #16
Workflow file for this run
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 run every time a new release is created. | |
name: Build and release | |
on: | |
release: | |
types: [created] | |
jobs: | |
portable-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Setup workspace | |
run: mkdir artifacts | |
- name: Build with Maven | |
run: | | |
mvn clean package --file pom.xml -P portable | |
cp target/M*.{zip,tar} artifacts/ | |
- name: Upload artifacts | |
uses: skx/github-action-publish-binaries@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
args: 'artifacts/M*' | |
windows-installer-build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Setup workspace | |
run: mkdir artifacts | |
- name: Build with Maven | |
run: mvn clean package --file pom.xml -P windows | |
- name: Upload artifacts | |
uses: skx/github-action-publish-binaries@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
args: 'target/installer/*' |