Skip to content

Commit 57598d1

Browse files
committed
Add GitHub Pages deploy Action
1 parent 3862c35 commit 57598d1

File tree

2 files changed

+37
-6
lines changed

2 files changed

+37
-6
lines changed

.github/workflows/deploy-pages.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build-and-deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
15+
- name: Install Pixi
16+
uses: prefix-dev/[email protected]
17+
- name: Generate index.html
18+
run: |
19+
pixi run export-html
20+
rm -rf .pixi .git
21+
22+
- name: Upload index.html to GitHub Pages
23+
uses: actions/upload-pages-artifact@v3
24+
with:
25+
path: ./
26+
27+
- name: Deploy to GitHub Pages
28+
uses: actions/deploy-pages@v4
29+
with:
30+
artifact_name: github-pages

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ header: 'Scientific AI and the Future of OME-Zarr'
99
footer: '[![h:40 fideus labs logo](./assets/fideus-logo-no-text.svg)](https://fideus.io)       Matt McCormick, PhD | fideus labs | EMBL BIA 2025'
1010
---
1111

12+
<style>
13+
img[alt~="center"] {
14+
display: block;
15+
margin: 0 auto;
16+
}
17+
</style>
18+
1219
# Scientific AI and the Future of OME-Zarr
1320
## Building Intelligent Bioimage Analysis Workflows
1421

@@ -18,12 +25,6 @@ footer: '[![h:40 fideus labs logo](./assets/fideus-logo-no-text.svg)](https://fi
1825
EMBL Advanced Methods in Bioimage Analysis
1926
September 17, 2025
2027

21-
<style>
22-
img[alt~="center"] {
23-
display: block;
24-
margin: 0 auto;
25-
}
26-
</style>
2728
---
2829

2930
## Today's Journey

0 commit comments

Comments
 (0)