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:
parent
fd7c70d42d
commit
fa18b2cf05
2 changed files with 2 additions and 2 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -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:
|
||||
|
|
|
@ -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 }}
|
||||
|
|
Loading…
Reference in a new issue