You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do not include full path to binary in .sha512 files on darwin
See ipfs/kubo#9323.
This is a darwin release thing because the signature process for macOS means
that we recalculate sha512 and cid and we do this using an absolute path so
the result includes the path to the file.
The fix is to cd to the folder and do it from there.
Copy file name to clipboardExpand all lines: scripts/ci/sign-new-macos-releases.sh
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -121,18 +121,20 @@ echo "::group::Update changed binaries in ./releases"
121
121
echo"-> Updating $PKG_NAME"
122
122
rm "$PKG_PATH"
123
123
tar -czvf "${WORK_DIR}/releases/${DIST_NAME}/${DIST_VERSION}/$PKG_NAME" -C "${WORK_DIR}/tmp/${DIST_NAME}_${DIST_VERSION}_${arch}-signed/""${DIST_NAME}"
0 commit comments