Skip to content

update release infos #33

update release infos

update release infos #33

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
# Triggers the workflow on push for the main and develop branch
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v5
with:
ref: ${{ github.ref }}
- uses: actions/setup-java@v5
with:
java-version: 11
distribution: 'zulu'
architecture: x64
- name: Build with Maven
run: mvn -B package --file pom.xml -DskipTests