Revert breaking changes for now (will be re-added in a later version) #24
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: Deploy Javadoc | |
on: | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # if you have a protection rule on your repository, you'll need to give write permission to the workflow. | |
steps: | |
- name: Deploy JavaDoc | |
uses: MathieuSoysal/Javadoc-publisher.yml@v2.5.0 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
javadoc-source-folder: core/build/docs/javadoc | |
javadoc-branch: javadoc | |
java-version: 21 | |
target-folder: javadoc | |
project: gradle |