build3
This commit is contained in:
parent
1926ac8567
commit
c9cf81489c
2 changed files with 19 additions and 10 deletions
23
.github/workflows/deploy.yml
vendored
23
.github/workflows/deploy.yml
vendored
|
@ -8,14 +8,23 @@ jobs:
|
|||
build-and-deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install and Build
|
||||
run: |
|
||||
npm install
|
||||
npm run build
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- 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
|
||||
with:
|
||||
folder: build
|
||||
branch: gh-pages
|
||||
folder: build
|
||||
clean: true
|
|
@ -41,12 +41,12 @@ const HomePage = () => {
|
|||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||||
<ProjectCard
|
||||
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"
|
||||
/>
|
||||
<ProjectCard
|
||||
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"
|
||||
/>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue