release-please-action
automated releases based on conventional commits (by googleapis)
release-please-demo
By andrewmcodes
| release-please-action | release-please-demo | |
|---|---|---|
| 3 | 1 | |
| 2,415 | 2 | |
| 1.3% | - | |
| 6.6 | 0.0 | |
| 9 days ago | 22 days ago | |
| TypeScript | Ruby | |
| Apache License 2.0 | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
release-please-action
Posts with mentions or reviews of release-please-action.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-12-13.
-
Ask HN: How do you handle release notes for multiple audiences?
Conventional commits along with Release Please: https://github.com/googleapis/release-please-action
I've used feat(pub):, fix(pub):, etc before to automatically separate changelogs into internal/public.
-
Haskell Project Template with Nix Flakes
I am pretty sure that there are many better ways to do what I do in this template repository, but I am happy using it to quickly spin up a new Haskell project. There are quite a few other things and methods I use in real-life projects, such as multi-package builds and GitHub Release Please Action integration, which are quite easy to add upon this template.
- Google changed Gighub org name breaking GH actions automation for others
release-please-demo
Posts with mentions or reviews of release-please-demo.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-02-19.
-
Automating Ruby Gem Releases with GitHub Actions
# frozen_string_literal: true require_relative "lib/release/please/demo/version" Gem::Specification.new do |spec| spec.name = "release-please-demo" spec.version = Release::Please::Demo::VERSION spec.authors = ["Andrew Mason"] spec.email = ["andrewmcodes@protonmail.com"] spec.summary = "Demo of release-please." spec.description = "A demo gem showing how to use release-please to automatically version gems." spec.homepage = "https://github.com/andrewmcodes/release-please-demo" spec.license = "MIT" spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0") spec.metadata = { "bug_tracker_uri" => "#{spec.homepage}/issues", "changelog_uri" => "#{spec.homepage}/blob/main/CHANGELOG.md", "documentation_uri" => spec.homepage.to_s, "homepage_uri" => spec.homepage.to_s, "source_code_uri" => spec.homepage.to_s } spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] end
What are some alternatives?
When comparing release-please-action and release-please-demo you can also consider the following projects:
flux2-kustomize-helm-example - A GitOps workflow example for multi-env deployments with Flux, Kustomize and Helm.
release-please-action - automated releases based on conventional commits [Moved to: https://github.com/googleapis/release-please-action]
login-action - GitHub Action to login against a Docker registry
wallabag-kindle-consumer - Send all articles with a certain tag from Wallabag to your kindle.
haskell-template-hebele - An opinionated Haskell Project Template based on Nix.