DEV Community

Discussion on: How do you distribute your binaries?

Collapse
 
michaelcurrin profile image
Michael Currin • Edited

I came across some GitHub Actions recomendations here:

github.community/t/can-you-add-bin...

One solution uses a GitHub-managed action to create a release and upload a file to it.

Example workflow on actions/upload-release-asset

Another solution is upload assets using a glob pattern

github.com/AButler/upload-release-...