File tree Expand file tree Collapse file tree 3 files changed +27
-9240
lines changed
Expand file tree Collapse file tree 3 files changed +27
-9240
lines changed Original file line number Diff line number Diff line change 1+ name : Build and Deploy To Github Pages
2+ on :
3+ push :
4+ branches :
5+ - master
6+ jobs :
7+ build-and-deploy :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : Checkout 🛎️
11+ uses : actions/checkout@v2.3.1
12+
13+ - name : Install and Build 🔧
14+ run : |
15+ cd website
16+ yarn install
17+ npm run build
18+ - name : Deploy 🚀
19+ uses : JamesIves/github-pages-deploy-action@4.1.4
20+ with :
21+ branch : gh-pages # The branch the action should deploy to.
22+ folder : website/build # The folder the action should deploy.
23+
24+
25+ # && GIT_USER="${GH_NAME}" yarn run publish-gh-pages
Original file line number Diff line number Diff line change @@ -3,3 +3,5 @@ website/**/build
33.node-version
44.DS_Store
55website /i18n /en.json
6+ package-lock.json
7+ * .log
You can’t perform that action at this time.
0 commit comments