Skip to content

Merge branch 'main' of github.com:studiohyperdrive/kabouter-koernikov… #1

Merge branch 'main' of github.com:studiohyperdrive/kabouter-koernikov…

Merge branch 'main' of github.com:studiohyperdrive/kabouter-koernikov… #1

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches:
- main # Set this to your default branch
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install and Build 🔧
run: |
npm ci
npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: main # The branch the action should deploy to.
FOLDER: dist # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch