Skip to content

Fix code formatting issue #235

Fix code formatting issue

Fix code formatting issue #235

Workflow file for this run

name: Main CI
on: [ push ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
spotless:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- name: Run Spotless
run: ./gradlew spotlessCheck
build:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- name: Build with Gradle
run: ./gradlew build
- name: Archive build artifacts
if: github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
with:
name: log4k_build
path: |
.gradle
build
log4k/build
log4k-slf4j/build
publish:
needs: build
runs-on: macos-14
if: github.ref == 'refs/heads/main'
environment: Sonatype
env:
ORG_GRADLE_PROJECT_sonatypePass: ${{ secrets.SONATYPE_API_KEY }}
ORG_GRADLE_PROJECT_sonatypeUser: ${{ secrets.SONATYPE_USER }}
SONATYPE_GPG_KEY: ${{ secrets.SONATYPE_GPG_KEY }}
SONATYPE_GPG_KEY_PASSWORD: ${{ secrets.SONATYPE_GPG_KEY_PASSWORD }}
steps:
- uses: actions/checkout@v4
with:
ref: refs/heads/main
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: log4k_build
- name: Publish to Sonatype (Maven Central)
shell: bash
run: |
brew install gnupg
./scripts/publish