Skip to content

fix checkstyle errors #20

fix checkstyle errors

fix checkstyle errors #20

Workflow file for this run

name: CD (Snapshot deployment)
on:
push:
branches:
- main
jobs:
cd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup build jdk
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: maven
server-id: sonatype-nexus-snapshots
server-username: NEXUS_REPO_USER
server-password: NEXUS_REPO_PASSWORD
- name: deploy code
env:
NEXUS_REPO_USER: ${{ secrets.NEXUS_REPO_USER }}
NEXUS_REPO_PASSWORD: ${{ secrets.NEXUS_REPO_PASSWORD }}
MAVEN_ARGS: "-B -fae"
run: make deploy
site:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set git information
run: |
git config --global user.name github-actions
git config --global user.email github-actions@github.com
- name: setup build jdk
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: maven
server-id: github
server-password: SITE_DEPLOY
- name: deploy documentation
env:
SITE_DEPLOY: ${{ secrets.SITE_DEPLOY_TOKEN }}
MAVEN_ARGS: "-Dbasepom.it.skip=false -Dbasepom.it.fork-count=1 -B -fae"
run: make deploy-site