Skip to content

Commit c4945f1

Browse files
authored
Add a CI workflow to build the website (#99)
1 parent 771c2a9 commit c4945f1

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build the website
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
build-website:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v6
12+
- name: Setup Pages
13+
uses: actions/configure-pages@v5
14+
- name: Build
15+
uses: actions/jekyll-build-pages@v1
16+
with:
17+
destination: "./built-website"
18+
- name: Upload artifact
19+
uses: actions/upload-pages-artifact@v4
20+
with:
21+
path: "./built-website"

0 commit comments

Comments
 (0)