v4.3.3.38 - Update NsPanelTs.ts #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docs-ci | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- docs/* | |
- .github/workflows/docs-release.yml | |
- mkdocs.yml | |
- HMI/README.md | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- run: pip install mkdocs-material mkdocs-video markdown-include mike | |
- run: cp HMI/README.md docs/hmi-serial-protocol.md | |
- run: git config --global user.name Docs deploy | |
- run: git config --global user.email [email protected] | |
- run: mike set-default stable | |
- run: mike deploy --push --update-aliases stable |