Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
AvantikaSharma2307 authored Apr 14, 2024
2 parents c087d5d + 8bd668a commit 5cf6aff
Show file tree
Hide file tree
Showing 36 changed files with 3,644 additions and 249 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install Dependencies
run: npm install

- name: Build
run: npm run build

- name: Deploy to GitHub Pages
run: npx gh-pages -d dist
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Loading

0 comments on commit 5cf6aff

Please sign in to comment.