Update Oct 2025 #13
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
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
name: CI Website NOSALRO | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
if: github.event_name != 'workflow_dispatch' | |
name: OS:${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04] | |
env: | |
CI_HOME: ${{github.workspace}} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install Ubuntu packages | |
run: sudo apt-get install -y python3-pip git | |
- name: Install pip packages | |
run: | | |
pip install pymdown-extensions | |
pip install py-markdown-table | |
pip install mkdocs | |
pip install mkdocs-material | |
pip install mkdocs-pymdownx-material-extras | |
pip install mkdocs-blogging-plugin | |
# pip install pandoc | |
# pip install pypandoc | |
# pip install mkdocs-bibtex | |
- name: Build website | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
cd ${{github.workspace}} && mkdocs build | |
mv docs docs_new | |
git checkout docs && rm -rf docs | |
mv docs_new docs | |
git add . | |
git commit -am "Update website" | |
git push |