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.
1 parent aaab128 commit e3cf5f9Copy full SHA for e3cf5f9
.github/workflows/deploy.yml
@@ -0,0 +1,31 @@
1
+name: "Deploy website"
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
14
+ - uses: actions/setup-node@v1
15
+ with:
16
+ node-version: "14.x"
17
18
+ - uses: actions/cache@v2
19
20
+ path: '**/node_modules'
21
+ key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
22
23
+ - name: Build
24
+ run: |
25
+ npm i
26
+ npm run build
27
+ - name: Deploy
28
+ uses: JamesIves/github-pages-deploy-action@3.6.2
29
30
+ BRANCH: gh-pages
31
+ FOLDER: public
0 commit comments