Skip to content

Update dependency com.fasterxml.jackson.dataformat:jackson-dataformat… #196

Update dependency com.fasterxml.jackson.dataformat:jackson-dataformat…

Update dependency com.fasterxml.jackson.dataformat:jackson-dataformat… #196

Workflow file for this run

name: Publish
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: "📥 Checkout repository"
uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew build
env:
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USERNAME }}
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }}
- name: Publish to Github Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: build/dist
repository-name: "micronaut-projects/micronaut-docs"
clean: false
token: ${{ secrets.GH_TOKEN }}