Skip to content

Commit b20447a

Browse files
committed
FIXED GITHUB WORKFLOW AND RENDER OF NEW PUBS
1 parent 72dd25c commit b20447a

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: npm run build
2525

2626
- name: Upload production-ready build files
27-
uses: actions/upload-artifact@v3
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: production-files
3030
path: ./dist

src/assets/content/Publications/2024pubs.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
const publications = [
2-
{
3-
title: "Data-Centric Defense: Shaping Loss Landscape with Augmentations to Counter Model Inversion",
4-
authors: "Si Chen, Feiyang Kang, Nikhil Abhyankar, Ming Jin, Ruoxi Jia",
5-
conference: "Transactions on Machine Learning Research (TMLR), 2024",
6-
openreview: "https://openreview.net/forum?id=VqzKim4Pd0",
7-
highlights: []
8-
},
2+
{
3+
title: "Data-Centric Defense: Shaping Loss Landscape with Augmentations to Counter Model Inversion",
4+
authors: "Si Chen, Feiyang Kang, Nikhil Abhyankar, Ming Jin, Ruoxi Jia",
5+
conference: "Transactions on Machine Learning Research (TMLR), 2024",
6+
openreview: "https://openreview.net/forum?id=VqzKim4Pd0",
7+
highlights: []
8+
},
99
{
1010
title: "Fairness-Aware Meta-Learning via Nash Bargaining",
1111
authors: "Yi Zeng, Xuelin Yang, Li Chen, Cristian Canton Ferrer, Ming Jin, Michael Jordan, Ruoxi Jia",

src/pages/Publications.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import publicationsPre2020 from '../assets/content/Publications/pre2020pubs';
1010
import publications2022 from '../assets/content/Publications/2022pubs';
1111
import publications2023 from '../assets/content/Publications/2023pubs';
1212
import publications2024 from '../assets/content/Publications/2024pubs';
13+
import publications2025 from '../assets/content/Publications/2025pubs';
1314

1415
interface Publication {
1516
title: string;
@@ -93,6 +94,8 @@ const Publications: React.FC = () => {
9394
return (
9495
<>
9596
<h1>Publications</h1>
97+
<h2>2025</h2>
98+
{renderPublications(publications2025)}
9699
<h2>2024</h2>
97100
{renderPublications(publications2024)}
98101
<h2>2023</h2>

0 commit comments

Comments
 (0)