Skip to content

Commit

Permalink
fix bash script
Browse files Browse the repository at this point in the history
  • Loading branch information
sheverniskiy committed May 28, 2022
1 parent bce5118 commit 1860650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
echo "iscode=false" >> $GITHUB_ENV
for changed_file in ${{ steps.files.outputs.all }}; do
echo "changed file ${changed_file}"
if (${changed_file##*.} == 'ts' || ${changed_file##*.} == 'js' || ${changed_file##*.} == 'json')
if [${changed_file##*.} == 'ts' || ${changed_file##*.} == 'js' || ${changed_file##*.} == 'json']; then
echo "iscode=true" >> $GITHUB_ENV
fi
done
Expand Down

0 comments on commit 1860650

Please sign in to comment.