diff --git a/.github/workflows/publish-javadoc-to-github-pages.yml b/.github/workflows/publish-javadoc-to-github-pages.yml new file mode 100644 index 00000000..3cfa82f1 --- /dev/null +++ b/.github/workflows/publish-javadoc-to-github-pages.yml @@ -0,0 +1,17 @@ +name: Publish Javadoc to GitHub Pages +on: + push: + branches: + - 'master' +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v2.3.1 + + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@4.1.3 + with: + branch: gh-pages # The branch the action should deploy to. + folder: documentation/javadoc/apidocs # The folder the action should deploy.