Skip to content

Enable CI builds for 2023.1.x branch. #13

Enable CI builds for 2023.1.x branch.

Enable CI builds for 2023.1.x branch. #13

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ main, "2023.*" ]
jobs:
build:
name: Build project
runs-on: ubuntu-latest
steps:
- name: Check out sources
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
cache: 'maven'
- name: Build and deploy snapshot
run: ./mvnw -B deploy --file pom.xml -s settings.xml -DossrhUsername=${{ secrets.OSSRH_USERNAME }} -DossrhPassword=${{ secrets.OSSRH_PASSWORD }}