-
-
Notifications
You must be signed in to change notification settings - Fork 332
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(release): add automated nightly releases #359
Conversation
Codecov Report
@@ Coverage Diff @@
## main #359 +/- ##
==========================================
+ Coverage 84.76% 84.99% +0.23%
==========================================
Files 40 40
Lines 8603 8686 +83
==========================================
+ Hits 7292 7383 +91
+ Misses 1311 1303 -8 |
0a5e13e
to
6ae2535
Compare
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.
Semver suggests that 0.22.0-whatever is before 0.22.0. We should go to 0.22.1-alpha.0 from 0.22.0.
Otherwise, looks good.
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.
LGTM ααα
As discussed in the last meeting, this PR updates the release workflow (
cd.yml
) for creating periodic nightly releases.The version schema is
<version>-alpha.<num>
and<num>
is increased each time the workflow runs. It is also possible to trigger a nightly release manually via the GitHub interface (seeworkflow_dispatch
).Tested here: https://github.com/orhun/tui-rs-revival/tags
Closes #147