Skip to content

Commit f322d67

Browse files
committed
Revert "Fix signing of install_oobee_dependencies.command and related scripts on Mac"
This reverts commit 4cfec99.
1 parent 0dfafef commit f322d67

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/image.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)