mirror of
https://github.com/ivabus/pantry
synced 2024-11-26 18:25:08 +03:00
file names with spaces.
This commit is contained in:
parent
57de8ac41a
commit
1f46416a62
1 changed files with 3 additions and 9 deletions
12
.github/actions/apple-signing/action.yml
vendored
12
.github/actions/apple-signing/action.yml
vendored
|
@ -52,15 +52,9 @@ runs:
|
||||||
- name: Check codesigning
|
- name: Check codesigning
|
||||||
shell: sh
|
shell: sh
|
||||||
run: |
|
run: |
|
||||||
for FILE in $(find $PATHS -type f); do
|
# FIXME: `deno` compiled binaries don't currently pass validation.
|
||||||
# FIXME: `deno` compiled binaries don't currently pass validation.
|
# https://github.com/denoland/deno/issues/17753
|
||||||
# https://github.com/denoland/deno/issues/17753
|
find $PATHS -type f ! -name tea -print0 | xargs -0 codesign -vvv --strict
|
||||||
if test "$(basename "$FILE")" = "tea"; then
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
|
|
||||||
codesign -vvv --strict "$FILE"
|
|
||||||
done
|
|
||||||
env:
|
env:
|
||||||
PATHS: ${{ inputs.paths }}
|
PATHS: ${{ inputs.paths }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue