Update ai-verordening.md: Belangrijke fout hersteld! (#527) #117
Workflow file for this run
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: Publish mkdocs via GitHub Pages | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
deploy-main: | |
name: deploy main | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: get tag | |
id: get_commit_hash | |
run: | | |
echo "commit_hash=$(git describe --tags)" >> "$GITHUB_OUTPUT" | |
- name: inject version | |
run: | | |
sed -i 's/development/${{ steps.get_commit_hash.outputs.commit_hash }}/g' docs/version.md | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
cache: 'pip' | |
- name: install dependencies | |
run: | | |
git config --global url."https://github-actions:${{ secrets.MATERIAL_INSIDERS_TOKEN }}@github".insteadOf ssh://git@github | |
pip install -r requirements.txt | |
- run: mkdocs gh-deploy --force |