Skip to content

Commit

Permalink
ci: Fix main release if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbo2002 committed Apr 28, 2021
1 parent 7319372 commit 99af6a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
if: contains(toJson(github.event.commits), '[skip ci]') == false
if: contains(toJson(github.event.commits), '[skip ci]') == false || github.ref == 'refs/head/main'
strategy:
matrix:
node: [10.x, 12.x, 14.x, 15.x]
Expand Down

0 comments on commit 99af6a4

Please sign in to comment.