Skip to content

Commit cc37096

Browse files
committed
Added GitHub Actions deployment workflow
1 parent 70e2b83 commit cc37096

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/deploy.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
13+
- name: Deploy
14+
uses: JamesIves/github-pages-deploy-action@v4
15+
with:
16+
folder: build
17+
branch: gh-pages

0 commit comments

Comments
 (0)