Skip to content

Commit bf63b0b

Browse files
committed
fix: simplify release trigger conditions
- Remove extra parentheses in workflow conditions - Fix YAML syntax for release and deploy-stores jobs - Ensure proper triggering on semantic releases
1 parent 014281e commit bf63b0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
deploy-stores:
120120
needs: [test, security-scan, release]
121121
runs-on: ubuntu-latest
122-
if: ((github.event_name == 'release' && github.event.action == 'published' && !contains(github.event.release.name, 'next')) || (github.event_name == 'push' && contains(github.event.head_commit.message, '[skip ci]'))
122+
if: (github.event_name == 'release' && github.event.action == 'published' && !contains(github.event.release.name, 'next')) || (github.event_name == 'push' && contains(github.event.head_commit.message, '[skip ci]'))
123123

124124
steps:
125125
- name: Checkout code

0 commit comments

Comments
 (0)