mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-22 02:25:41 +01:00
Merge pull request #3123 from Multiverse/ben/javadoc
Javadoc with github action
This commit is contained in:
commit
a2a740f371
39
.github/workflows/dispatch.javadoc.yml
vendored
Normal file
39
.github/workflows/dispatch.javadoc.yml
vendored
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
name: 'Dispatch: Deploy Javadoc'
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
target_tag:
|
||||||
|
description: 'Version to generate javadoc'
|
||||||
|
required: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
javadocs:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ inputs.target_tag }}
|
||||||
|
|
||||||
|
- uses: actions/setup-java@v3
|
||||||
|
with:
|
||||||
|
java-version: '11'
|
||||||
|
distribution: 'adopt'
|
||||||
|
cache: gradle
|
||||||
|
|
||||||
|
- name: build javadoc
|
||||||
|
uses: gradle/gradle-build-action@v2
|
||||||
|
with:
|
||||||
|
arguments: javadoc
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
GITHUB_VERSION: ${{ inputs.target_tag }}
|
||||||
|
|
||||||
|
- name: Deploy javadoc to gh pages
|
||||||
|
uses: JamesIves/github-pages-deploy-action@v4
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
folder: build/docs/javadoc
|
||||||
|
branch: javadoc
|
||||||
|
target-folder: javadoc/${{ inputs.target_tag }}
|
||||||
|
commit-message: Deploy javadoc for ${{ inputs.target_tag }}
|
20
.github/workflows/generic.github_release.yml
vendored
20
.github/workflows/generic.github_release.yml
vendored
@ -89,3 +89,23 @@ jobs:
|
|||||||
file: build/libs/${{ inputs.plugin_name }}-${{ steps.release.outputs.publish_version }}.jar
|
file: build/libs/${{ inputs.plugin_name }}-${{ steps.release.outputs.publish_version }}.jar
|
||||||
asset_name: ${{ inputs.plugin_name }}-${{ steps.release.outputs.tag_name }}.jar
|
asset_name: ${{ inputs.plugin_name }}-${{ steps.release.outputs.tag_name }}.jar
|
||||||
tag: ${{ steps.release.outputs.tag_name }}
|
tag: ${{ steps.release.outputs.tag_name }}
|
||||||
|
|
||||||
|
- name: Generate javadoc
|
||||||
|
id: javadoc
|
||||||
|
if: steps.release.outputs.release_created == 'true' && steps.release.outputs.release_type == 'release'
|
||||||
|
uses: gradle/gradle-build-action@v2
|
||||||
|
with:
|
||||||
|
arguments: javadoc
|
||||||
|
env:
|
||||||
|
GITHUB_VERSION: ${{ steps.release.outputs.publish_version }}
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Deploy javadoc to gh pages
|
||||||
|
if: steps.javadoc.outcome == 'success'
|
||||||
|
uses: JamesIves/github-pages-deploy-action@v4
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
folder: build/docs/javadoc
|
||||||
|
branch: javadoc
|
||||||
|
target-folder: javadoc/${{ steps.release.outputs.tag_name }}
|
||||||
|
commit-message: Deploy javadoc for ${{ steps.release.outputs.tag_name }}
|
||||||
|
Loading…
Reference in New Issue
Block a user