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