Skip to content

Maven central workflow #1

Maven central workflow

Maven central workflow #1

Workflow file for this run

name: Maven Build
on:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm]
continue-on-error: true
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- run: mvn -B install | tee out
- run: tail -1000 out