action-gh-release
action-gh-release copied to clipboard
📦 :octocat: GitHub Action for creating GitHub Releases
In my workflow I produce msi installer with the name: `appName(x64)_1.0.0.xx.msi` `action-gh-release` replaces brackets with dots. It produces following name: `appName.x64._1.0.0.xx.msi` it is not only display issue. After clicking download...
This is the extract from the script to create the release and when I check the release notes generated it's obvious that it's for the master branch and not for...
Would like an option to to autmatically mark the file as a pre-release if versioned as a semver pre-release. (eg `1.1.0-beta.2`) Don't know whether there exists another way to accomplish...
GH releases have a "make_latest' parameter as detailed in https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28#create-a-release that is not currently supported
closes #206
Closes #297 This PR supports the `make_latest` property of the [releases REST API](https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28#create-a-release). I've tested this on my fork and it works well for me. I've kept the behaviour with...
When generating a release, the one option that's missing for automating releases for my use cases is `make_latest`. Can this be added as an inputs option to update an existing...
- Change 'pattern does not match any files' warning to fatal - Also raise a fatal error if the config file is not valid Closes #383
Example: https://github.com/rpdelaney/downforeveryone/actions/runs/6149726050/job/16686210047 ``` 🤔 dist/downforeveryone*.whl,dist/downforeveryone*.tar.gz not include valid file. ``` Instead of simply failing, this workflow run instead published a release with all the files in the repo: https://github.com/rpdelaney/downforeveryone/releases/tag/v1.0.5 This...