File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,11 @@ jobs:
136
136
if [[ -f "$b" ]]; then
137
137
echo "Signing binary '$b'..."
138
138
/usr/bin/codesign --force --options runtime -s "${IDENTITY_ID}" "$b" -v
139
+ echo "checksum(0) '$b':"
140
+ shasum -a 256 "$b"
139
141
7z a "slang-macos-dist.zip" "$b"
142
+ echo "checksum(1) '$b':"
143
+ shasum -a 256 "$b"
140
144
fi
141
145
done
142
146
@@ -157,6 +161,10 @@ jobs:
157
161
mv "$(pwd)/build/dist-${config}/slang.tar.gz" "${base}.tar.gz"
158
162
echo "SLANG_BINARY_ARCHIVE_TAR=${base}.tar.gz" >> "$GITHUB_OUTPUT"
159
163
164
+ mkdir ./ttmp
165
+ unzip "${base}.zip" -d ./ttmp
166
+ echo "packed checksum slangd:"
167
+ shasum -a 256 "./tmp/bin/slangd"
160
168
- name : File check
161
169
run : |
162
170
find "build/dist-$config" -print0 ! -iname '*.md' ! -iname '*.h' -type f | xargs -0 file
You can’t perform that action at this time.
0 commit comments