Skip to content

Commit 6423b3f

Browse files
committed
Fix github actions deployment
1 parent ba06795 commit 6423b3f

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/cd-gh-pages-deployment.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ jobs:
4242
run: cargo clippy & cargo fmt
4343

4444
- name: Download and install tailwindcss binary
45-
run: npm install -D tailwindcss && npx tailwindcss -i input.css -o style/output.css # run tailwind
45+
run: |
46+
npm install -D tailwindcss@3
47+
npx tailwindcss -i input.css -o style/output.css --watch=false
4648
4749
- name: Download and install Trunk binary
4850
run: wget -qO- https://github.com/trunk-rs/trunk/releases/download/v0.18.4/trunk-x86_64-unknown-linux-gnu.tar.gz | tar -xzf-

src/pages/projects.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ const PROJECTS: &[&Project] = &[
2828
url: "https://github.com/vinayman/kick-ups",
2929
},
3030
&Project {
31-
name: "A Memecoin Tracker developed for eunice.ai (my current employer)",
32-
description: "A memecoin tracker developed for eunice.ai. It allows users to track some quantitative metrics of different memecoins and compare them with each other.",
33-
url: "https://tokenwhisperer.xyz",
31+
name: "My personal portfolio website",
32+
description: "A personal portfolio website written in Rust using Leptos.",
33+
url: "https://github.com/vinayman/vinayman",
3434
},
3535
];
3636

0 commit comments

Comments
 (0)