Lock vertical zoom on buttons for line charts #235
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
name: GeoHammer build for MacOS | |
on: [push, workflow_dispatch] | |
jobs: | |
GeoHammer-MacOS-Build: | |
runs-on: macos-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Set JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'liberica' | |
java-package: 'jdk+fx' | |
architecture: 'x64' | |
- name: Cache local Maven repository | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Build with Maven | |
run: mvn --batch-mode install -P macos-build | |
- name: Staging artifacts | |
run: mkdir staging && cp target/*.zip staging | |
- name: Store artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: MacOS-Package | |
path: staging | |
retention-days: 5 |