Create javadocs.yml

This commit is contained in:
Risto Lahtela 2021-03-10 10:08:21 +02:00 committed by GitHub
parent 4e3c901e59
commit a4e2c24dae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

40
.github/workflows/javadocs.yml vendored Normal file
View File

@ -0,0 +1,40 @@
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Automatically Deploy Javadocs
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Build Javadocs 🔧
run: |
cd Plan
echo "Building javadocs with gradle"
./gradlew aggregateJavadocs
echo "Moving to working directory:"
cd ../
mkdir javadocs
mkdir javadocs/all
mkdir javadocs/api
cp -r Plan/build/docs/javadoc/* javadocs/all/
cp -r Plan/api/build/docs/javadoc/* javadocs/api/
cd javadocs
touch .nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.0.0
with:
branch: gh-pages # The branch the action should deploy to.
folder: javadocs # The folder the action should deploy.