🏗️ qr-code-app standalone #11
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
# Also see https://github.com/beryx-gist/badass-runtime-example-javafx/blob/master/.github/workflows/gradle.yml | |
name: 🏗️ qr-code-app standalone | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, macos-11, windows-2019] | |
fail-fast: false | |
name: ${{ matrix.os }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4.1.1 | |
- name: Set up JDK | |
uses: actions/setup-java@v3.13.0 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
- name: Echo JAVA_HOME | |
run: echo $JAVA_HOME | |
- name: Execute qr-code-app:installDist | |
run: ./gradlew --info --stacktrace qr-code-app:installDist | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: qr-code-app-${{ matrix.os }} | |
path: qr-code-app/build/install/qr-code-with-logo-app/ |