I'm satisfied with where the Mac version is. As for a prebuilt binary, I could build one. It'd be unsigned which raises the bar a bit to get it to run. I'm not familiar with Apple's procedures for signing the application, and I suspect that signing wouldn't be adding much in terms of security since I'm not really in a position to lock down the signing key.
You could also use GitHub's CI/CD environment to build it. You can look at the workflow script in Angband, https://github.com/angband/angband/b...s/release.yaml , for what it's doing. That script is automatically populating a release for GitHub so it's likely more complicated than you might want, but the steps for doing the build on the Mac might be useful. Those steps coupled with uploading generated disk image (dmg) file as a "workflow artifact", as GitHub calls it, should let you manually download the disk image and incorporate it into a release.
You could also use GitHub's CI/CD environment to build it. You can look at the workflow script in Angband, https://github.com/angband/angband/b...s/release.yaml , for what it's doing. That script is automatically populating a release for GitHub so it's likely more complicated than you might want, but the steps for doing the build on the Mac might be useful. Those steps coupled with uploading generated disk image (dmg) file as a "workflow artifact", as GitHub calls it, should let you manually download the disk image and incorporate it into a release.