Skip to content

Commit df1fad6

Browse files
committed
Add deploy script
Still have to figure out how this works I guess
1 parent 01be794 commit df1fad6

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
deploy:
9+
name: Deploy
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Get Build Files
14+
uses: actions/download-artifact@v2
15+
with:
16+
name: production-files
17+
path: ./build

0 commit comments

Comments
 (0)