Voeg GitHub Actions workflow toe voor automatische deployment naar Gi… #1
Workflow file for this run
  
    
      This file contains hidden or 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: Deploy to GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - website | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '16' | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build the project | |
| run: npm run build | |
| - name: Export the project | |
| run: npm run export | |
| - name: Deploy to GitHub Pages | |
| run: | | |
| touch out/.nojekyll | |
| git config --global user.name 'github-actions[bot]' | |
| git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
| git add out | |
| git commit -m 'Deploy to GitHub Pages' | |
| git push origin `git subtree split --prefix out main`:gh-pages --force |