automating gem releases #51
-
Hi Andrew Thank you for your article: https://andrewm.codes/blog/automating-ruby-gem-releases-with-github-actions/ I have a few questions:
Any light you could shed would be most appreciated. rgds Ben |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It should be automatically updated by the action in the PR it creates with the upcoming launch. In that PR it should be updating the version according to your semantic commits and changelog. Here is an example from this project: #62. I know it's updating
Hmm it should be basing the number off of Apologies about the horribly late reply but I'd be happy to look at it with you. I use it on all my projects now and install it on the old one's whenever I return. |
Beta Was this translation helpful? Give feedback.
It should be automatically updated by the action in the PR it creates with the upcoming launch. In that PR it should be updating the version according to your semantic commits and changelog.
Here is an example from this project: #62. I know it's updating
package.json
instead ofversion.rb
in this example but it's the same concept. You tell it what to point to in the action config by specifyingrelease-type
in the action (example). For Ruby projects, it will look forversion.rb
based on this chart.