-
Notifications
You must be signed in to change notification settings - Fork 59
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
Simple way to create Github Release after CI succeeds #110
Comments
You need to add the publish step and also tag reference If it's your first time of release you need also to configure sonatype account To release the new version, all you need to do is create a new tag on Github and Github Actions will publish a release to Sonatype. The SBT plugin (sbt-github-actions) with the settings in build.sbt, automatically parses Git tags as version numbers and knows to publish the project with the correct version. For example: set the tag name as v0.0.1 and it will be published as 0.0.1
|
@hagaiovadia thanks for your answer. Nevertheless, this is not my question :p, I already have these steps working. My question is how to easily create a Github Release (using Github API I guess) when the publish on sonatype succeeds. |
@hagay3 of course (wanted to know if it was implemented as optional step). Anyway, it would be nice to handle it as optional step in sbt-github-actions ;). |
@KannarFr |
Hum correct, it should be managed in sbt-ci-release. |
There is a simple way to automatically create a github release when CI publish succeeds?
The text was updated successfully, but these errors were encountered: