Skip to content

Commit 47d3ac1

Browse files
committed
bug: fix the deploy action to run on main
1 parent 7738082 commit 47d3ac1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
# quick trash.
9595
needs: build
9696
# only run this when the action is push and the destination branch is main
97-
if: github.action == 'push' && github.ref_name == 'main'
97+
if: github.event_name == 'push' && github.ref_name == 'main'
9898
permissions:
9999
id-token: write
100100
contents: read

0 commit comments

Comments
 (0)