This commit is contained in:
Charlotte Croce 2025-04-03 12:53:24 -04:00
parent 1926ac8567
commit c9cf81489c
2 changed files with 19 additions and 10 deletions

View file

@ -8,14 +8,23 @@ jobs:
build-and-deploy: build-and-deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - name: Checkout
- name: Install and Build uses: actions/checkout@v3
run: |
npm install
npm run build
- name: Deploy - name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4 uses: JamesIves/github-pages-deploy-action@v4
with: with:
folder: build
branch: gh-pages branch: gh-pages
folder: build
clean: true

View file

@ -41,12 +41,12 @@ const HomePage = () => {
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<ProjectCard <ProjectCard
title="Champlain Tech Journals" title="Champlain Tech Journals"
description="Notes, code, and lab write-ups from my Champlain College courses" description="Notes, code, and lab write-ups from my Champlain College courses. Probably a useful resource if you also go here."
sourceUrl="https://codeberg.org/charlottecroce/ChamplainTechJournals" sourceUrl="https://codeberg.org/charlottecroce/ChamplainTechJournals"
/> />
<ProjectCard <ProjectCard
title="Nøkken Health" title="Nøkken Health"
description="A mobile app to track and analyze health data" description="A mobile app to track and analyze health data. Track medications, bloodwork, symptoms, and more. Made with Flutter"
sourceUrl="https://codeberg.org/charlottecroce/nokken" sourceUrl="https://codeberg.org/charlottecroce/nokken"
/> />
</div> </div>