Skip to content

Add user ""

Add user "" #34

Workflow file for this run

name: GitHub Pages Deployment
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Dependencies
run: npm install
- name: Build Static Site
run: npm run build
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}