I Created a workflow on release.yml that automatically creates a release which is triggered by tag push to remote/origin.
The workflow includes the steps to
Create a release,
Download artifacts locally
Attach the downloaded artifacts to the release
To trigger this, you can tag your repo using git tag and push the repo to production using git push origin ,
can be any tag starting with v* eg v0.09, v0.01, v1.2 etc
I Created a workflow on release.yml that automatically creates a release which is triggered by tag push to remote/origin. The workflow includes the steps to