Skip to content

Commit 2b7ea36

Browse files
committed
Fix for site not being deployed
1 parent 03e0bff commit 2b7ea36

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Deploy to GitHub Pages
22

33
on:
44
push:
5-
tags:
6-
- 'v[0-9]+.[0-9]+.[0-9]+'
5+
branches:
6+
- main
77

88
jobs:
99
build-and-deploy:
@@ -28,4 +28,4 @@ jobs:
2828
uses: peaceiris/actions-gh-pages@v3
2929
with:
3030
github_token: ${{ secrets.DEPLOY_TOKEN }}
31-
publish_dir: ./out
31+
publish_dir: ./public

0 commit comments

Comments
 (0)