-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(ci): Add action for bumb version #253
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Steffen Exler <[email protected]> Co-authored-by: Steffen Exler <[email protected]>
Signed-off-by: Steffen Exler <[email protected]>
Signed-off-by: Steffen Exler <[email protected]>
Signed-off-by: Steffen Exler <[email protected]>
Signed-off-by: Steffen Exler <[email protected]>
Tested on fork and works fine 🙂 |
@@ -0,0 +1,74 @@ | |||
--- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we somehow reuse the hack/release.sh
script here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, thanks for the reminder, I forget to take a look into it. I was mostly gone through a tutorial.
- name: Create release | ||
run: gh release create {{ steps.tag.outputs.tag }} --verify-tag --generate-notes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't really understand this change. The workflow should just create the tag and let the release workflow (with goreleaser) take care of creating the release with proper assets.
svu: ## Creates a new version, args options major, minor & patch | ||
@go run github.com/caarlos0/svu $(args) --strip-prefix > config/version.txt | ||
@go run github.com/caarlos0/svu $(args) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already have make release
. Why is that needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Signed-off-by: Steffen Exler <[email protected]> Co-authored-by: Steffen Exler <[email protected]>
Add action for bumb version
Fix #180