Skip to content

Commit

Permalink
Fix condfition
Browse files Browse the repository at this point in the history
  • Loading branch information
tomski747 committed Nov 17, 2024
1 parent 354566c commit ba4629e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-next-react-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Check if should run
id: 'check'
run: |
if [[ $(npx nx show projects --affected --plain | grep -q "react-sdk") ]]; then
if $(npx nx show projects --affected --plain | grep -q "react-sdk"); then
echo "run=true" >> $GITHUB_OUTPUT
else
echo "run=false" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit ba4629e

Please sign in to comment.