Skip to content

chore: first commit

chore: first commit #2

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: write # for checkout
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js πŸš€
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies πŸ“¦
run: npm install
- name: Build πŸ—
run: npm run build
- name: Deploy πŸš€
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
commit-message: 'chore(deploy): deploy to GitHub Pages'
folder: dist