readme page leads to DevGuide project #9
This file contains hidden or 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: CI pipeline | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
# for security reasons the github actions are pinned to specific release versions | |
jobs: | |
deploy: | |
name: Deploy web doc | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout markdown | |
uses: actions/[email protected] | |
- name: Install python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.x | |
- name: Install python packages | |
run: | | |
pip install mkdocs-material | |
pip install mkdocs-open-in-new-tab | |
- name: Deploy | |
run: mkdocs gh-deploy --force --verbose |