Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Deploy PR previews

on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed

concurrency: preview-${{ github.ref }}

jobs:
deploy-preview:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Python
if: github.event.action != 'closed'
uses: actions/setup-python@v5
with:
python-version: 3.x

- name: Install MkDocs
if: github.event.action != 'closed'
run: pip install mkdocs-material # of: pip install -r requirements.txt

- name: Build MkDocs site
if: github.event.action != 'closed'
run: mkdocs build

- name: Deploy preview
uses: rossjrw/pr-preview-action@v1
with:
source-dir: ./site/ # MkDocs bouwt standaard naar ./site/
preview-branch: gh-pages # branch waar je Pages op draait
qr-code: true
2 changes: 2 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ Dit is een product van het [programma DDAS](https://www.divosa.nl/projecten/data

Naast de uitgangspunten en de technische specificatie bevat dit document een beschrijving van de niet-functionele eisen (beschikbaarheid, performance).

Deze tekst moet nog aangepast worden!

***De huidige versie is nog in ontwikkeling. De eerste vastgestelde versie zal in april 2026 beschikbaar komen, na vaststelling door de stuurgroep DDAS.***
Loading