From 20a64a6bb83607d5c22eb9e6b1206658477e97f2 Mon Sep 17 00:00:00 2001 From: Govert-Claus Date: Mon, 13 Apr 2026 23:29:21 +0200 Subject: [PATCH 1/2] Update index.md --- docs/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/index.md b/docs/index.md index f97e2f2..9f03288 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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.*** From 0ae89042e6a0bf6c2b88ae07b7904166fcf4bcf8 Mon Sep 17 00:00:00 2001 From: Govert-Claus Date: Mon, 13 Apr 2026 23:32:48 +0200 Subject: [PATCH 2/2] Create preview.yml --- .github/workflows/preview.yml | 39 +++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/preview.yml diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml new file mode 100644 index 0000000..785c4dc --- /dev/null +++ b/.github/workflows/preview.yml @@ -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