Skip to content

Updating

Updating #1

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main # Replace with your branch name
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Build
run: npm run predeploy
- name: Deploy
uses: "JamesIves/github-pages-deploy-action@4.1.5" # Replace with the latest version
with:
branch: gh-pages
folder: "."