We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12953dd commit e517a43Copy full SHA for e517a43
1 file 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
0 commit comments