mirror of
https://github.com/1technophile/OpenMQTTGateway.git
synced 2026-03-02 21:44:21 +01:00
45 lines
1.5 KiB
YAML
45 lines
1.5 KiB
YAML
name: Create and publish documentation
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
jobs:
|
|
documentation:
|
|
runs-on: ubuntu-latest
|
|
name: Create the documentation and deploy it to GitHub Pages
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "14.x"
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.7"
|
|
- name: Install build dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install requests pandas markdown pytablereader tabulate
|
|
npm install
|
|
- name: Download Common Config
|
|
run: |
|
|
curl -o docs/.vuepress/public/commonConfig.js https://www.theengs.io/commonConfig.js
|
|
- name: get lastest release tag
|
|
id: last_release
|
|
uses: InsonusK/get-latest-release@v1.0.1
|
|
with:
|
|
myToken: ${{ github.token }}
|
|
view_top: 1
|
|
- name: Set version tag from git
|
|
run: sed -i "s/version_tag/${{steps.last_release.outputs.tag_name}}/g" docs/.vuepress/config.js scripts/latest_version.json
|
|
- name: Build documentation
|
|
run: |
|
|
python ./scripts/generate_board_docs.py
|
|
python ./scripts/gen_wu.py ${GITHUB_REPOSITORY}
|
|
npm run docs:build
|
|
- name: Deploy to GitHub Pages
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./docs/.vuepress/dist
|
|
cname: docs.openmqttgateway.com |