Skip to content

Commit

Permalink
Publish javadocs with GitHub Actions (#968)
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinShalit authored Sep 8, 2020
1 parent 7262b83 commit c079aa0
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 29 deletions.
29 changes: 0 additions & 29 deletions .azure-scripts/push-javadoc-to-gh-pages.sh

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/deploy-javadoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Deploy Javadoc

on:
push:
branches:
- master

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-java@v1
with:
java-version: 11
java-package: jdk+fx
- name: Generate Javadoc
run: ./gradlew aggregateJavadocs
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
CLEAN: true
FOLDER: build/docs/javadoc
TARGET_FOLDER: javadoc

0 comments on commit c079aa0

Please sign in to comment.