fork of the maven publisher plugin #27
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
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Java CI with Maven | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
run: mvn -B verify --file pom.xml | |
# from https://github.com/marketplace/actions/deploy-publish-javadoc | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy JavaDoc | |
uses: K0zka/Javadoc-publisher.yml@master | |
with: | |
custom-command: mvn install dokka:dokka && mkdir -p target/dokka-all && cp -r `find -name dokka` target/dokka-all | |
folder: target/dokka-all | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
javadoc-branch: javadoc | |
java-version: 11 | |
target-folder: javadoc | |
project: maven |