Skip to content

Commit 64a9870

Browse files
committed
add build.yml
1 parent c796bfe commit 64a9870

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: check if site is buildable
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
permissions:
8+
contents: read
9+
pages: write
10+
id-token: write
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
19+
- name: Build with Jekyll
20+
uses: actions/[email protected]
21+
with:
22+
source: ./
23+
destination: ./_site

0 commit comments

Comments
 (0)