Skip to content

Commit 97d1dc2

Browse files
committed
Ad-hoc sign after install_name_tool
1 parent 0c06b3e commit 97d1dc2

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ jobs:
306306
echo "Updating $path to $new_path"
307307
# Use install_name_tool to change the path
308308
install_name_tool -change "$path" "$new_path" "$dylib_file"
309+
codesign -fs- "$dylib_file"
309310
fi
310311
done
311312
}

GPTKVersion.plist

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>version</key>
6+
<dict>
7+
<key>build</key>
8+
<string>0</string>
9+
<key>major</key>
10+
<integer>2</integer>
11+
<key>minor</key>
12+
<integer>0</integer>
13+
<key>patch</key>
14+
<integer>0</integer>
15+
<key>preRelease</key>
16+
<string></string>
17+
</dict>
18+
</dict>
19+
</plist>

0 commit comments

Comments
 (0)