Closed larzw closed 7 years ago
Thanks! I just watched your talk on it 😄 @gep13
@larzw doh! 😄 Hope you got something out of it. It was the first time that I had given that talk.
@gep13
This is a really cool tool!
I have a question on setting up a fully automated github workflow. Would I only have to checkout a release branch checkout -b release-1.0.0
and push it to github? Then in theory the build triggered from pushing this to github would do the following steps...
I've seen people use tags to trigger releases. Would that be better in this case? If so what would the workflow look like?
Thanks!
@gep13,
I was messing around with triggering builds using tags. I think I like this method better. These are my steps. Any comments? I'm pretty sure something like Cake.Recipes would help me out. I'll probably mess around with that next, but wanted to better understand the process.
Thanks!
@larzw Great to hear that you like it :+1:
What you have there is essentially what I do yes. Within Cake.Recipe, this is what we do:
https://cake-contrib.github.io/Cake.Recipe/docs/usage/creating-release
We don't create the tag manually, but rather, use the GitHub UI to do that work.
@larzw Let me know if you have any questions about getting this added into your build pipeline.