Skip to content

Merge pull request #21 from open-eid/update #29

Merge pull request #21 from open-eid/update

Merge pull request #21 from open-eid/update #29

Workflow file for this run

name: Github Pages
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: python3 -m pip install mkdocs-bootswatch
- name: Build docs
run: |
GLOBIGNORE=ID_software_architecture_files:README.md:.git:.github
rm -rf *
cd ID_software_architecture_files
mkdocs build
mv site/* ..
rmdir site
- name: Deploy
run: |
git config --local user.name 'github-actions[bot]'
git config --local user.email 'github-actions[bot]@users.noreply.github.com'
git add .
git commit -am "Update site"
git push origin master