Skip to content

Commit

Permalink
fix: correct condition in CI (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
lehainam-dev authored Mar 14, 2024
1 parent a410b29 commit 17f278e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:

build:
if:
${{ contains('refs/heads/main', github.ref) || contains('refs/heads/release', github.ref) }}
${{ contains(github.ref, 'refs/heads/main') || contains(github.ref, 'refs/heads/release') }}
runs-on: [ubuntu-22.04]
needs:
- prepare
Expand Down

0 comments on commit 17f278e

Please sign in to comment.