Skip to content

Commit aa58e98

Browse files
authored
fix: deploy condition (#36)
there was a typo in the if condition in the test-release job the correct context is github.event (singular)
1 parent fc8080a commit aa58e98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
test-release:
10-
if: github.events.commits[0].author.name == 'semantic-release'
10+
if: github.event.commits[0].author.name == 'semantic-release'
1111

1212
runs-on: ubuntu-latest
1313
permissions:

0 commit comments

Comments
 (0)