1
Fork 0
This repository has been archived on 2026-08-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2026SEL3-project-Brittle_St.../.github/workflows/publish-docs.yml
Tibo De Peuter b1ef5125ce
fix: use personal token instead
Replaced GITHUB_TOKEN with PERSONAL_TOKEN for deployment.
2026-05-03 17:43:34 +02:00

20 lines
392 B
YAML

name: Publish docs via GitHub Pages
on:
push:
branches:
- main
- dev
- docs/*
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v2
- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@master
env:
PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }}