Merge pull request #78 from saschpe/gradle8_11 #260
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: Main CI | |
on: [ push ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
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 |