I wanted to know if we could use Github Actions for committing release commits after closing a milestone.
So what I've done previously is to commit mvn release:prepare && mvn release:perform on my local computer, then push it. However, with Github Actions, I was hoping that I could automate release commits from the workflow itself.
So far all the tutorials for using Maven with Github Actions are limited to running clean install or test checks or deployments, but never release.
Does anyone have any experience in setting up Maven release with Github Actions? Thank you