Skip to content

Commit 11296d4

Browse files
committed
static maybe
1 parent e8ea4db commit 11296d4

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Diff for: .github/workflows/static.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# serve static contents from the docs directory
2+
name: Static Pages
3+
on:
4+
push:
5+
branches:
6+
- "main"
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- uses: actions/setup-node@v3
13+
with:
14+
node-version: 20.x
15+
- run: npm install -g serve
16+
- run: serve -s docs
17+
env:
18+
CI: false

0 commit comments

Comments
 (0)