mirror of
https://github.com/actions/upload-pages-artifact.git
synced 2026-02-09 03:45:23 +00:00
Updates from editor
This commit is contained in:
committed by
GitHub
parent
5ed71eacfa
commit
717c17dd70
12
.github/workflows/test-hosted-runners.yml
vendored
12
.github/workflows/test-hosted-runners.yml
vendored
@@ -44,14 +44,16 @@ jobs:
|
|||||||
run: tar -xf artifact2/artifact.tar -C artifact2 && rm artifact2/artifact.tar
|
run: tar -xf artifact2/artifact.tar -C artifact2 && rm artifact2/artifact.tar
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
|
- name: Check for absence of hidden files
|
||||||
|
run: if [ $(find artifact2 -regex ".*/\..*" | wc -l) != 0 ]; then echo "Hidden files found"; exit 1; fi
|
||||||
|
shell: bash
|
||||||
|
|
||||||
- name: Compare files
|
- name: Compare files
|
||||||
run: diff -qr artifact artifact2
|
run: |
|
||||||
|
rm artifact/.hidden
|
||||||
|
diff -qr artifact artifact2
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Check for absence of symlinks
|
- name: Check for absence of symlinks
|
||||||
run: if [ $(find artifact2 -type l | wc -l) != 0 ]; then echo "Symlinks found"; exit 1; fi
|
run: if [ $(find artifact2 -type l | wc -l) != 0 ]; then echo "Symlinks found"; exit 1; fi
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Check for absence of hidden files
|
|
||||||
run: if [ $(find artifact2 -regex ".*/\..*" | wc -l) != 0 ]; then echo "Hidden files found"; exit 1; fi
|
|
||||||
shell: bash
|
|
||||||
|
|||||||
Reference in New Issue
Block a user