-
Notifications
You must be signed in to change notification settings - Fork 39
42 lines (34 loc) · 1.1 KB
/
ssg-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: SSG Build to Deploy
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# cache the dependencies from any node_modules directory
- name: Cache dependencies
uses: actions/cache@v2
with:
path: |
**/node_modules
**/package-lock.json
**/.production
key: node_modules-${{ hashFiles('**/package.json') }}
- name: Install deps
run: npm install
- name: Build
run: npx nullstack build --mode=ssg --output=docs
- name: Send to Github
run: |
git branch gh-pages -f
git checkout gh-pages
touch ./docs/.nojekyll
git add docs -f
git config --global user.name "NullstackDeployer"
git config --global user.email "[email protected]"
git commit -m ":rocket: New SSG Build"
git push -u origin gh-pages -f