Skip to content

Commit a6b870c

Browse files
committed
fix: sign any stray dylibs found in build directory
Made-with: Cursor
1 parent 8510e56 commit a6b870c

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/build-turboquant-macos.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,11 @@ jobs:
119119
codesign --verify --verbose "$bin"
120120
fi
121121
done
122+
for lib in $(find build -name "*.dylib" 2>/dev/null); do
123+
echo "Signing dylib $lib ..."
124+
codesign --force --options runtime --timestamp \
125+
--sign "$CODESIGN_IDENTITY" "$lib"
126+
done
122127
123128
- name: Prepare release archive
124129
run: |

0 commit comments

Comments
 (0)