Skip to content

Commit 00f14c3

Browse files
update yaml
1 parent 295351e commit 00f14c3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
run: npm install
2121

2222
- name: Build
23-
run: npm run build
23+
run: |
24+
export NEXT_LINT_IGNORE_ERRORS=true
25+
npm run build
2426
2527
- name: Deploy
2628
uses: peaceiris/actions-gh-pages@v3

pages/publications.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const PapersSection = ({ papers }: { papers: Paper[] }) => {
7878
setFilteredPapers(
7979
papers.filter((paper) => !filter || paper.category.includes(filter))
8080
);
81-
}, [filter]);
81+
}, [filter, papers]);
8282

8383
return (
8484
<div>

0 commit comments

Comments
 (0)