File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -146,18 +146,17 @@ jobs:
146146 chmod -R u+w "$GITHUB_WORKSPACE/oobee"
147147
148148 # Sign all Mach-O (exec bits OR dylib OR node native addons)
149- # Search $GITHUB_WORKSPACE (not just oobee/) to cover scripts copied to the parent dir
150149 while IFS= read -r f; do
151150 echo "Signing $f"
152151 codesign --force --options runtime --timestamp --sign "${CERTIFICATE_NAME}" "$f"
153152 done < <(
154- find "$GITHUB_WORKSPACE" -type f \
153+ find "$GITHUB_WORKSPACE/oobee " -type f \
155154 \( -perm -111 -o -name "*.dylib" -o -name "*.node" \) \
156155 ! -path "*/.git/*"
157156 )
158157
159158 echo "Verifying signatures of Mach-O files..."
160- find "$GITHUB_WORKSPACE" -type f \( -perm -111 -o -name "*.dylib" -o -name "*.node" \) \
159+ find "$GITHUB_WORKSPACE/oobee " -type f \( -perm -111 -o -name "*.dylib" -o -name "*.node" \) \
161160 -exec codesign --verify --strict --verbose=2 {} \; || true
162161
163162 - name : Cleanup keychain
You can’t perform that action at this time.
0 commit comments