We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9d549fc + d11ea13 commit 3420a4dCopy full SHA for 3420a4d
.github/workflows/render-specs.yml
@@ -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
25
+ github_token: ${{ secrets.GITHUB_TOKEN }}
26
+ publish_dir: ./
27
+ allow_empty_commit: true
28
+ force_orphan: true
0 commit comments