Skip to content

Commit 5b10ae4

Browse files
committed
add github action
1 parent 4c31066 commit 5b10ae4

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: Build and Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
build-and-deploy:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
with:
18+
submodules: true
19+
fetch-depth: 0
20+
21+
- name: Setup R
22+
uses: r-lib/actions/setup-r@v2
23+
with:
24+
r-version: 'release'
25+
26+
- name: Setup Pandoc
27+
uses: r-lib/actions/setup-pandoc@v2
28+
29+
- name: Setup Hugo
30+
uses: peaceiris/actions-hugo@v2
31+
with:
32+
hugo-version: 'latest'
33+
extended: true
34+
35+
- name: Install dependencies
36+
run: |
37+
install.packages("blogdown")
38+
shell: Rscript {0}
39+
40+
- name: Build site
41+
run: |
42+
blogdown::build_site()
43+
shell: Rscript {0}
44+
45+
- name: Copy CNAME
46+
run: cp CNAME public/
47+
48+
- name: Deploy
49+
uses: peaceiris/actions-gh-pages@v3
50+
with:
51+
github_token: ${{ secrets.GITHUB_TOKEN }}
52+
publish_dir: ./public
53+
publish_branch: gh-pages

content/publications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ title: Publications
3636

3737
## <i class="fa fa-calendar fa-1x" aria-hidden="true"></i> 2026 {#year-2026}
3838

39-
+ B Liu, Y Liu, S Xu, Q Wu, D Wu, Y Liao, Y Mai, M Zheng, S Wang, L Zhan, Y Chen, Z Huang, X Luo, Z Xie, X Pan, __G Yu__<sup>\*</sup>, L Xie<sup>\*</sup>. [EasyMultiProfiler: An Efficient Multi-Omics Data Integration and Analysis Workflow for Microbiome Research](https://www.sciengine.com/SCLS/doi/10.1007/s11427-025-3035-0). __*SCIENCE CHINA Life Sciences*__. 2026, accepted.
39+
+ B Liu, Y Liu, S Xu, Q Wu, D Wu, Y Liao, Y Mai, M Zheng, S Wang, L Zhan, Y Chen, Z Huang, X Luo, Z Xie, X Pan, __G Yu__<sup>\*</sup>, L Xie<sup>\*</sup>. [EasyMultiProfiler: An Efficient Multi-Omics Data Integration and Analysis Workflow for Microbiome Research](https://doi.org/10.1007/s11427-025-3035-0). __*SCIENCE CHINA Life Sciences*__. 2026, accepted.
4040
+ __G Yu__<sup>\*</sup>. [Background bias in functional enrichment analysis: Insights from clusterProfiler](https://doi.org/10.59717/j.xinn-life.2025.100181). __*The Innovation Life*__. 2026, 4(1):100181.
4141

4242

0 commit comments

Comments
 (0)