Skip to content

Commit 96d83b6

Browse files
committed
Fix if statement in deploy job in CI
1 parent 620eaac commit 96d83b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
- test
108108
- coverage
109109
- build
110-
if: github.event.type == 'PushEvent' && github.ref == 'refs/heads/main'
110+
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
111111
name: GitHub Pages
112112
runs-on: ubuntu-latest
113113
steps:

0 commit comments

Comments
 (0)