Skip to content

avaje-jsonb EA stable #1381

avaje-jsonb EA stable

avaje-jsonb EA stable #1381

Workflow file for this run

name: avaje-jsonb EA stable
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '39 1 * * 1,3,5'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v7
- name: Set up Java
uses: oracle-actions/setup-java@v1
with:
website: jdk.java.net
release: ea
version: stable
- name: Maven cache
uses: actions/cache@v6
env:
cache-name: maven-cache
with:
path: |
~/.m2/repository
!~/.m2/repository/io/avaje
key: ea-stable-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
restore-keys: |
ea-stable-${{ env.cache-name }}-
- name: Maven version
run: mvn --version
- name: Build with Maven
run: mvn package