build3
This commit is contained in:
parent
1926ac8567
commit
c9cf81489c
2 changed files with 19 additions and 10 deletions
25
.github/workflows/deploy.yml
vendored
25
.github/workflows/deploy.yml
vendored
|
@ -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
|
- name: Setup Node.js
|
||||||
npm run build
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
- name: Deploy
|
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:
|
||||||
|
branch: gh-pages
|
||||||
folder: build
|
folder: build
|
||||||
branch: gh-pages
|
clean: true
|
|
@ -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>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue