109 add support of medusa format csv files (#112) #215
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 Ubuntu Linux | |
on: [push, workflow_dispatch] | |
jobs: | |
GeoHammer-Linux-Build: | |
runs-on: ubuntu-22.04 | |
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 linux-build | |
- name: Staging artifacts | |
run: mkdir staging && cp target/*.zip staging | |
- name: Store artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Linux-Package | |
path: staging | |
retention-days: 5 |