Skip to content

Commit 84afec4

Browse files
committed
Deploy workflow
1 parent f70bf7a commit 84afec4

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/deploy.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: deploy
2+
on:
3+
push:
4+
branches: [main]
5+
jobs:
6+
deploy:
7+
runs-on: ubuntu-latest
8+
env:
9+
CI: true
10+
steps:
11+
- name: 'Checkout sources'
12+
uses: actions/checkout@v4
13+
14+
- name: 'Setup NodeJS'
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: 20.x
18+
19+
- name: 'Install dependencies'
20+
run: yarn install
21+
22+
- name: 'Build'
23+
run: yarn build
24+
25+
- name: 'Deploy'
26+
uses: peaceiris/actions-gh-pages@v4
27+
with:
28+
github_token: ${{ secrets.GITHUB_TOKEN }}
29+
publish_dir: ./dist
30+
username: "Rob van der Leek"
31+
useremail: "[email protected]"

0 commit comments

Comments
 (0)