Skip to content

add github actions #1

add github actions

add github actions #1

Workflow file for this run

name: CD (Snapshot deployment)
defaults:
distribution: temurin

Check failure on line 4 in .github/workflows/master-cd.yml

View workflow run for this annotation

GitHub Actions / CD (Snapshot deployment)

Invalid workflow file

The workflow is not valid. .github/workflows/master-cd.yml (Line: 4, Col: 3): Unexpected value 'distribution' .github/workflows/master-cd.yml (Line: 5, Col: 3): Unexpected value 'java-version'
java-version: 21
on:
push:
branches:
- main
jobs:
cd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
id: setup_jdk
name: Setup JDK
with:
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_CONFIG: "-B -fae"
run: make deploy
site:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set git information
run: |
git config --global user.name ${{ github.actor }}
git config --global user.email ${{ github.actor }}
- name: setup jdk
uses: actions/setup-java@v3
with:
cache: maven
server-id: github
server-password: SITE_DEPLOY
- name: deploy documentation
env:
SITE_DEPLOY: ${{ secrets.SITE_DEPLOY_TOKEN }}
MAVEN_CONFIG: "-B -fae"
run: make deploy-site