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
During my first attempts to release via a tag I got this error: java.io.IOException: secret key ring doesn't start with secret key tag: tag 0xffffffff. Unfortunately I don't have the build log of this failed attempt anymore, so I can't show the complete stacktrace. I was able to fix this problem by slightly changing how the value of PGP_SECRET was created. Instead of
Thanks for reporting and finding the workaround! I've updated the readme to include -w0 for Ubuntu cc4b031 The BSD base64 doesn't support -w0. (I was gonna open a PR but accidentally pushed to master because I don't have a fork of the repo 😅 )
During my first attempts to release via a tag I got this error:
java.io.IOException: secret key ring doesn't start with secret key tag: tag 0xffffffff
. Unfortunately I don't have the build log of this failed attempt anymore, so I can't show the complete stacktrace. I was able to fix this problem by slightly changing how the value of PGP_SECRET was created. Instead ofI needed to pass
-w0
tobase64
which disables line wrappingSo
base64
without-w0
outputted a multiline string which caused the above error.I'm using Ubuntu 16.04.5 with
base64 (GNU coreutils) 8.25
.BTW, publishing via Travis is really cool, thanks @olafurpg! :-)
The text was updated successfully, but these errors were encountered: