Skip to content

Commit c85cba7

Browse files
👷 deploy-to-gh-pages.yml
1 parent 5cc885f commit c85cba7

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
24+
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
25+
BRANCH: gh-pages
26+
FOLDER: dist/angular-form-array

0 commit comments

Comments
 (0)