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 cdddc93 commit ab05827Copy full SHA for ab05827
.github/workflows/deploy.yml
@@ -0,0 +1,24 @@
1
+name: Build and Deploy
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+permissions:
7
+ contents: write
8
+jobs:
9
+ build-and-deploy:
10
+ concurrency: ci-${{ github.ref }}
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout 🛎️
14
+ uses: actions/checkout@v3
15
+
16
+ - name: Install and Build 🔧
17
+ run: |
18
+ npm ci
19
+ npm run build
20
21
+ - name: Deploy 🚀
22
+ uses: JamesIves/github-pages-deploy-action@v4
23
+ with:
24
+ folder: dist
.travis.yml
0 commit comments