1
mirror of https://github.com/CarmJos/EasyPlugin.git synced 2024-09-20 03:35:48 +00:00
EasyPlugin/.github/workflows/javadoc.yml

79 lines
2.3 KiB
YAML
Raw Normal View History

2022-01-04 12:38:29 +00:00
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Javadoc
on:
# 支持手动触发构建
workflow_dispatch:
release:
# 创建release的时候触发
types: [ published ]
jobs:
api-website:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Set up the Java JDK
uses: actions/setup-java@v2
with:
2022-01-04 12:49:41 +00:00
cache: maven
2022-01-04 12:38:29 +00:00
java-version: '11'
distribution: 'adopt'
2022-01-09 05:26:28 +00:00
server-id: github
server-username: MAVEN_USERNAME
server-password: MAVEN_TOKEN
2022-01-04 12:38:29 +00:00
- name: Generate docs
2022-01-07 17:35:16 +00:00
run: mvn javadoc:javadoc -DskipTests
2022-01-04 21:19:40 +00:00
env:
MAVEN_USERNAME: ${{ github.repository_owner }}
MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}}
2022-01-04 12:38:29 +00:00
- name: Copy to Location
run: |
2022-01-07 17:47:49 +00:00
bash .scripts/copy-javadoc.sh
2022-01-04 12:38:29 +00:00
- name: Generate the sitemap
id: sitemap
uses: cicirello/generate-sitemap@v1
with:
base-url-path: https://carmjos.github.io/EasyPlugin
path-to-root: docs
- name: Output stats
run: |
echo "sitemap-path = ${{ steps.sitemap.outputs.sitemap-path }}"
echo "url-count = ${{ steps.sitemap.outputs.url-count }}"
echo "excluded-count = ${{ steps.sitemap.outputs.excluded-count }}"
2022-01-07 18:20:17 +00:00
ls -l docs
2022-01-04 12:38:29 +00:00
- name: Configure Git
env:
DEPLOY_PRI: ${{secrets.DEPLOY_PRI}}
run: |
sudo timedatectl set-timezone "Asia/Shanghai"
mkdir -p ~/.ssh/
echo "$DEPLOY_PRI" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan github.com >> ~/.ssh/known_hosts
git config --global user.name 'CarmJos'
git config --global user.email 'carm@carm.cc'
- name: Commit documentation changes
run: |
cd docs
git init
git remote add origin git@github.com:CarmJos/EasyPlugin.git
git checkout -b gh-pages
git add -A
git commit -m "API Document generated."
- name: Push javadocs
run: |
cd docs
git push origin HEAD:gh-pages --force