We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 794c97a commit 3560c7fCopy full SHA for 3560c7f
1 file changed
.github/workflows/gh-pages-deploy.yml
@@ -0,0 +1,26 @@
1
+name: gh-pages-deploy
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ build-and-deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v2.3.1
14
+ with:
15
+ persist-credentials: false
16
17
+ - name: Install and Build
18
+ run: |
19
+ npm install
20
+ npm run build
21
22
+ - name: Deploy
23
+ uses: JamesIves/github-pages-deploy-action@4.1.3
24
25
+ branch: gh-pages
26
+ folder: build/web
0 commit comments