Skip to content

Commit

Permalink
Create publish_javadoc workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Hangman authored Apr 24, 2024
1 parent 108d49d commit acdae92
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish_javadoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
javadoc-branch: javadoc
java-version: 21
target-folder: javadoc
project: gradle

0 comments on commit acdae92

Please sign in to comment.