Skip to content

Commit e517a43

Browse files
committed
1 parent 12953dd commit e517a43

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
19+
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
20+
BRANCH: gh-pages
21+
FOLDER: build

0 commit comments

Comments
 (0)