Skip to content

Update 01-doel.md

Update 01-doel.md #27

Workflow file for this run

name: Publish
on:
push:
branches: [develop]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
lint:
uses: ./.github/workflows/lint.yaml
build:
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Make snapshot
run: make snapshot
- name: Upload snapshot
uses: actions/upload-artifact@v4
with:
name: build
path: build
retention-days: 1
deploy:
environment:
name: GitHub Pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Download snapshot
uses: actions/download-artifact@v4
with:
name: build
- name: Configure GitHub Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "."
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4