This repository was archived by the owner on Oct 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 102
This repository was archived by the owner on Oct 31, 2023. It is now read-only.
goreleaser signing using gon - "bundle format unrecognized, invalid, or unsuitable" #49
Copy link
Copy link
Open
Description
I am trying to sign my golang using goreleaser - and eventually distribute using Homebrew. But this will require signing with Apple Developer ID to be able to distribute to MacOs.
Also posted on Stackoverflow
Have you seen the following error using gon and fixed it?
yaml sample from here
## .goreleaser.yaml
# This is an example .goreleaser.yml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
# you may remove this if you don't need go generate
- go generate ./...
builds:
- binary: foo
id: foo
goos:
- linux
goarch:
- amd64
# notice that we need a separated build for the MacOS binary only:
- binary: foo
id: appbrew-macos
goos:
- darwin
goarch:
- amd64
hooks:
post: gon gon.hcl
gon.hcl file
# The path follows a pattern
# ./dist/BUILD-ID_TARGET/BINARY-NAME
source = ["."]
bundle_id = "com.mydomain.mybrew"
apple_id {
username = "<[email protected]>"
password = "@keychain:developer_id_application"
}
sign {
application_identity = "Developer ID Application: my name (452534542)"
}
I can verify that the password is retrieve using:
security find-generic-password -w -s 'developer_id_application' -a '<[email protected]>'
Error:
• archives
• creating archive=dist/appbrew_0.1.19_Darwin_x86_64.tar.gz
• creating archive=dist/appbrew_0.1.19_Darwin_arm64.tar.gz
• creating archive=dist/appbrew_0.1.19_Linux_i386.tar.gz
• creating archive=dist/appbrew_0.1.19_Linux_x86_64.tar.gz
• creating archive=dist/appbrew_0.1.19_Linux_arm64.tar.gz
• creating source archive
• linux packages
• snapcraft packages
• calculating checksums
• checksumming file=appbrew_0.1.19_Linux_arm64.tar.gz
• checksumming file=appbrew_0.1.19_Darwin_arm64.tar.gz
• checksumming file=appbrew_0.1.19_Linux_x86_64.tar.gz
• checksumming file=appbrew_0.1.19_Darwin_x86_64.tar.gz
• checksumming file=appbrew_0.1.19_Linux_i386.tar.gz
• signing artifacts
• signing cmd=[gon gon.hcl]
• ==> ✏️ Signing files...
cmd=gon
• ❗️ Error signing files:
error signing:
.: bundle format unrecognized, invalid, or unsuitable
cmd=gon
⨯ release failed after 3.49s error=sign: gon failed
Metadata
Metadata
Assignees
Labels
No labels