Skip to content

Commit

Permalink
update the github action file
Browse files Browse the repository at this point in the history
  • Loading branch information
gconnect committed Mar 27, 2024
1 parent 56d719b commit bf4fc04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:

- name: Check changed files
id: check_changes
run: |
CHANGED_FILES=$(git diff-tree --name-only HEAD^ HEAD)
run: |
CHANGED_FILES=$(git diff-tree --name-only HEAD^ HEAD 2>/dev/null || echo "")
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' && steps.check_changes.outputs.changed_files != 'helper' && steps.check_changes.outputs.changed_files != 'utils'}}
run: |
Expand Down

0 comments on commit bf4fc04

Please sign in to comment.