Replies: 2 comments 1 reply
-
Glad you found it useful! 😃 Yeah it would be really great to have a pre-release action as well, thank you for offering! |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hey @troglobit ! I'm terribly sorry for falling out of the loop with this one 😅 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Joachim!
I noticed you've been using a github action to automatically create a new release when the tag is pushed. I liked this implementation so much that I integrated it into my repo as well.
I noticed that in order to create an urgent release you made a change into that action. I also assume that you marked the
-rc1
as prerelease and wrote the description manually. In my implementation, I made two different actions: one looks for tags that are releases ([0-9]+.[0-9]+.[0-9]+
) and one for pre-releases ([0-9]+.[0-9]+.[0-9]+-*
). I chose the latter regex to comply with semver rule about pre-releases. I couldn't come up with a good approach for a release description there, so I picked tag description by default.I thought it might be good to share an improvement of a schema that I borrowed in the first place :) Would you be interested if I made a similar pull request for finit as well?
Beta Was this translation helpful? Give feedback.
All reactions