Skip to content

#cm: Fixing argument name in javadocs. #71

#cm: Fixing argument name in javadocs.

#cm: Fixing argument name in javadocs. #71

Workflow file for this run

name: Build and Deploy Artifacts on commit to main
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: adopt
architecture: x64
cache: maven
- name: Build and Deploy
run: mvn --batch-mode --update-snapshots deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}