Skip to content

deployment using github actions #1

deployment using github actions

deployment using github actions #1

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Trigger deployment when pushing to main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
with:
lfs: true # Enable LFS
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Build and Deploy
run: npm run deploy