Skip to content

Commit f70b3a1

Browse files
committed
Created deploy.yml to automatically deploy website on push to main
1 parent 422a688 commit f70b3a1

2 files changed

Lines changed: 31 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build-and-deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Set up Node.js
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: 18
18+
19+
- name: Install Bun
20+
run: curl -fsSL https://bun.sh/install | bash
21+
22+
- name: Install dependencies
23+
run: bun install
24+
25+
- name: Build
26+
run: bun run build
27+
28+
- name: Deploy
29+
run: bun run deploy

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,5 @@ Material UI: any library of React UI components that implements Google's Materia
4747
## TASK LIST
4848
Any new tasks will be added below for simplicity ranked by priority e.g. 1 (most important)... nth task (least important, n denoting # of tasks).
4949

50-
1. Convert jsx files to tsx files
51-
2. Combine new tsx (formerly jsx in task above) files with css files using TailwindCSS
52-
3. Remove any unused Files/Components
50+
1. Combine new tsx (formerly jsx in task above) files with css files using TailwindCSS
51+
2. Remove any unused Files/Components

0 commit comments

Comments
 (0)