Skip to content

Commit 0573d55

Browse files
committed
Explicitly reference main branch in actions
The docs use -branch but that doesn't seem to resolve correctly as we weren't seeing the deployment auto-trigger. This change specifies main explicitly to (hopefully) fix that)
1 parent db05a7d commit 0573d55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: Deploy to GitHub Pages
33
on:
44
# Runs on pushes targeting the default branch
55
push:
6-
branches: [$default-branch]
6+
branches:
7+
- main
78

89
# Allows you to run this workflow manually from the Actions tab
910
workflow_dispatch:

0 commit comments

Comments
 (0)