Skip to content

Commit

Permalink
modified the if condition in the yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
gconnect committed Mar 27, 2024
1 parent c000589 commit 6f6ea91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
echo "::set-output name=changed_files::$CHANGED_FILES"
- name: Bump version and publish
if: ${{ steps.check_changes.outputs.changed_files != 'apps' && steps.check_changes.outputs.changed_files != 'bin'}}
if: ${{ steps.check_changes.outputs.changed_files != 'apps' && steps.check_changes.outputs.changed_files != 'bin' && steps.check_changes.outputs.changed_files != 'helper' && steps.check_changes.outputs.changed_files != 'utils'}}
run: |
npm version patch --no-git-tag-version
git push origin master --follow-tags
Expand Down

0 comments on commit 6f6ea91

Please sign in to comment.