Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
automatically deploys javadocs to gh-pages branch
  • Loading branch information
11BelowStudio authored Feb 28, 2024
1 parent 12b98e9 commit 1e778f1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Deploy Javadoc

permissions:
contents: write

on:
push:
branches:
- master
- main

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Deploy javadoc to Github Pages
uses: dev-vince/actions-publish-javadoc@v1.0.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
java-version: "8" # Replace with your java version. Default is 17
branch: "gh-pages" # The branch for the javadoc contents. By default gh-pages

0 comments on commit 1e778f1

Please sign in to comment.