Skip to content

Commit

Permalink
built toy version
Browse files Browse the repository at this point in the history
  • Loading branch information
athul2037 committed Jul 2, 2024
1 parent 83512c5 commit 470d4b6
Show file tree
Hide file tree
Showing 20 changed files with 18,757 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build and Deploy to GH Pages

on:
push:
branches:
- main

jobs:
build-and-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: '18'

- name: Install Dependencies
run: npm install

- name: Build
run: npm run build

- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: build
clean: true
Loading

0 comments on commit 470d4b6

Please sign in to comment.