Currently multi-platform GitHub Actions gem publishes don't work because the default rake release behavior is to try to push a version tag each time it publishes, so whichever publish attempts lose the race to be first will fail.
One fix would be to re-implement rake release on top of rake build and gem push such that it skips the tagging step (or handles an error).
Currently multi-platform GitHub Actions gem publishes don't work because the default
rake release
behavior is to try to push a version tag each time it publishes, so whichever publish attempts lose the race to be first will fail.One fix would be to re-implement
rake release
on top ofrake build
andgem push
such that it skips the tagging step (or handles an error).