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 5cc885f commit c85cba7Copy full SHA for c85cba7
.github/workflows/deploy-to-gh-pages.yml
@@ -0,0 +1,26 @@
1
+name: Build and Deploy
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+
7
+jobs:
8
+ build-and-deploy:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout 🛎️
12
+ uses: actions/checkout@v2
13
+ with:
14
+ persist-credentials: false
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@releases/v3
23
24
+ ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
25
+ BRANCH: gh-pages
26
+ FOLDER: dist/angular-form-array
0 commit comments