mirror of
https://github.com/actions/upload-pages-artifact.git
synced 2026-02-09 03:45:23 +00:00
Update test-hosted-runners.yml
This commit is contained in:
committed by
GitHub
parent
a5aa90da21
commit
a16f4a08dd
8
.github/workflows/test-hosted-runners.yml
vendored
8
.github/workflows/test-hosted-runners.yml
vendored
@@ -45,7 +45,13 @@ jobs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Compare files
|
- name: Compare files
|
||||||
run: diff -qr artifact artifact2
|
run: |
|
||||||
|
diff_output=$(diff -qr artifact artifact2 | grep -v -e '.hidden' -e 'subdir/.hidden_also')
|
||||||
|
if [ -n "$diff_output" ]; then
|
||||||
|
echo "Unexpected differences found:"
|
||||||
|
echo "$diff_output"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Check for absence of symlinks
|
- name: Check for absence of symlinks
|
||||||
|
|||||||
Reference in New Issue
Block a user