We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0f52ba2 + e517a43 commit f764b4aCopy full SHA for f764b4a
2 files changed
.github/workflows/deploy.yml
@@ -0,0 +1,21 @@
1
+name: Build and 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
14
+ with:
15
+ persist-credentials: false
16
+ - name: Build and Deploy
17
+ uses: JamesIves/github-pages-deploy-action@releases/v3
18
19
+ ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
20
+ BRANCH: gh-pages
21
+ FOLDER: build
build
0 commit comments