3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2025-01-18 13:57:39 +00:00

fix: resolve bug with pattern matching on windows (#341)

This commit is contained in:
Tonye Jack 2022-02-01 22:30:40 -05:00 committed by GitHub
parent fd7c70d42d
commit fa18b2cf05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -615,7 +615,7 @@ jobs:
if: steps.changed-files-specific-only-changed.outputs.other_deleted_files != ''
run: |
if [[ "${{ steps.changed-files-specific-only-changed.outputs.only_deleted }}" != "false" ]]; then
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-only-changed.outputs.only_deleted }})"
echo "Invalid output: Expected (false) got (${{ steps.changed-files-specific-only-changed.outputs.only_deleted }})."
exit 1
fi
shell:

View file

@ -113,7 +113,7 @@ runs:
id: base-sha
shell: bash
- name: Glob match
uses: tj-actions/glob@v5
uses: tj-actions/glob@v6
id: glob
with:
files: ${{ inputs.files }}