We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f28b2b commit c2b0ba8Copy full SHA for c2b0ba8
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,22 @@
1
+name: Build and Deploy
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+jobs:
8
+ build-and-deploy:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout 🛎️
12
+ uses: actions/[email protected]
13
14
+ - name: Install and Build
15
+ run: |
16
+ npm ci
17
+ npm run build
18
+ - name: Deploy 🚀
19
+ uses: JamesIves/[email protected]
20
+ with:
21
+ branch: gh-pages # The branch the action should deploy to.
22
+ folder: public # The folder the action should deploy.
0 commit comments