update changelog #58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CD (Snapshot deployment) | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
cd: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install locales on ubuntu runner | |
run: sudo apt-get install -y locales-all | |
- name: setup jdk | |
uses: actions/setup-java@v3 | |
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_CONFIG: "-B -fae" | |
run: make deploy | |
site: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install locales on ubuntu runner | |
run: sudo apt-get install -y locales-all | |
- 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: | |
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_CONFIG: "-B -fae" | |
run: make deploy-site |