Skip to content

Update CHANGELOG.md #64

Update CHANGELOG.md

Update CHANGELOG.md #64

Workflow file for this run

name: Branch CI (Snapshot)
on:
push:
branches-ignore:
- main
jobs:
build:
permissions:
contents: read
packages: write
uses: ./.github/workflows/build.yml
event_file:
needs: build
name: "Event File"
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Event File
path: ${{ github.event_path }}
deploy:
needs: build
permissions:
contents: read
packages: write
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'corretto'
cache: maven
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Grant execute permission for Maven Wrapper
run: chmod +x ./mvnw
- name: Deploy SNAPSHOT
run: ./mvnw --batch-mode -DskipTests -Darguments=-DskipTests deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}