From b2dd2a5480136e80ccc8e7f7eeb160afa8317e02 Mon Sep 17 00:00:00 2001 From: Rubydesic Date: Tue, 1 Jun 2021 09:45:53 -0400 Subject: [PATCH] Create publish-javadoc-to-github-pages.yml --- .../publish-javadoc-to-github-pages.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/publish-javadoc-to-github-pages.yml 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.