Skip to content
This repository was archived by the owner on Feb 6, 2026. It is now read-only.

Commit ddd3219

Browse files
committed
chore: Add actions build
1 parent 478445d commit ddd3219

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build site
2+
on:
3+
push:
4+
branches:
5+
- gatsby
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
12+
- name: Install
13+
run: npm install
14+
15+
- name: Build
16+
run: npm run build
17+
18+
- name: Deploy
19+
uses: peaceiris/actions-gh-pages@v3
20+
with:
21+
github_token: ${{ secrets.GITHUB_TOKEN }}
22+
publish_dir: ./public
23+
cname: neaps.js.org

0 commit comments

Comments
 (0)