Skip to content

Commit 3420a4d

Browse files
committed
Merge branch 'main' into initial-spec-draft
2 parents 9d549fc + d11ea13 commit 3420a4d

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/render-specs.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: render-specs
2+
on:
3+
push:
4+
branches:
5+
- initial-spec-draft
6+
7+
jobs:
8+
build-and-deploy-spec:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v2
13+
with:
14+
persist-credentials: false
15+
16+
- name: Install and Build
17+
run: |
18+
npm install
19+
node -e "require('spec-up')({ nowatch: true })"
20+
rm -rf node_modules
21+
22+
- name: Deploy
23+
uses: peaceiris/[email protected]
24+
with:
25+
github_token: ${{ secrets.GITHUB_TOKEN }}
26+
publish_dir: ./
27+
allow_empty_commit: true
28+
force_orphan: true

0 commit comments

Comments
 (0)