Skip to content

Update to Spring Boot 3.1.2 #308

Update to Spring Boot 3.1.2

Update to Spring Boot 3.1.2 #308

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Deploy Docs
on:
push:
branches-ignore:
- 'dependabot**'
jobs:
deploy-plugin:
runs-on: ubuntu-latest
env:
ORG_GRADLE_PROJECT_freefairDocsUser: ${{ secrets.FREEFAIR_DOCS_USER }}
ORG_GRADLE_PROJECT_freefairDocsPass: ${{ secrets.FREEFAIR_DOCS_PASS }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
- run: ./gradlew uploadDocumentation -s
- run: ./gradlew publish
if: ${{ github.event_name == 'push' && github.ref_type == 'branch' }}
env:
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.OSSRH_USERNAME }}
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.OSSRH_PASSWORD }}