Skip to content

changed: dark theme to default #16

changed: dark theme to default

changed: dark theme to default #16

Workflow file for this run

name: Deploy to GitHub Pages
permissions:
contents: write
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '23.1.0'
- name: Install Dependencies
run: yarn install
- name: Build Project
run: yarn generate
- name: Create NoJekyll file
run: touch ./.output/public/.nojekyll
- name: Build and Deploy
uses: JamesIves/github-pages-deploy-action@v4.4.3
with:
branch: gh-pages
folder: .output/public