Skip to content
Snippets Groups Projects
Select Git revision
  • 81ced9216c6e1a09bd1bb6836c6e72cf672e5a17
  • master default
  • javadoc
  • gh-pages protected
  • 0.2.4
  • 0.2.2
  • 0.2.1
  • 0.2.0
  • 0.1.0
  • 0.0.3
  • 0.0.2
  • 0.0.1
12 results

deploy-javadoc.yml

  • user avatar
    Andrea Burattin authored and GitHub committed
    5ed4f957
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    deploy-javadoc.yml 621 B
    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: mvn javadoc:javadoc
          - name: Deploy 🚀
            uses: JamesIves/github-pages-deploy-action@3.5.9
            with:
              GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
              BRANCH: gh-pages
              CLEAN: true
              FOLDER: javadoc
              TARGET_FOLDER: javadoc