create-gh-release-action
create-gh-release-action copied to clipboard
GitHub Action for creating GitHub Releases based on changelog.
I'm trying to implement the following workflow: 1. Create a draft release 2. Build and publish to the registries 3. Publish the release by promoting the draft as the final...
I use [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) (a format for the commit messages) and [git-chglog](https://github.com/git-chglog/git-chglog) to generate my changelogs for each release. This already spits out the exact markdown that I want in...
I want to use `taiki-e/create-gh-release-action` instead of `softprops/action-gh-release` to create a release draft and upload files at the same time. But I can not find the `files` option I know...
Currently, if a release already exists, this action deletes it and then creating a new release. This behavior should be configurable. https://github.com/taiki-e/create-gh-release-action/blob/0c6ccb3138a320ce96d81052be4263e7abeda881/main.sh#L72-L76
I recently added `parse-changelog` to Alpine's `testing` repository [here](https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/67771). Rather than manually downloading `parse-changelog`'s binaries from GH releases, for Alpine we should just install it with `apk`.