github / git-sizer

Compute various size metrics for a Git repository, flagging those that might cause problems
MIT License
3.48k stars 139 forks source link

Generate automatic draft release #115

Closed elhmn closed 11 months ago

elhmn commented 11 months ago

We needed a way to generate draft releases for git-sizer binaries.

This commit adds a new .github/workflows/release.yml github action that will generate a draft release when a new tag version is pushed.

the action will be triggered After the tag is created and pushed using:

git tag -as v$VERSION
git push origin v$VERSION