-
Notifications
You must be signed in to change notification settings - Fork 125
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
Make it possible to review auto version -v output during release + adjust that workflow step description #743
Conversation
.github/workflows/release.yml
Outdated
version="$(~/auto version)" | ||
# to be able to debug if something goes wrong | ||
auto version -v | tee /tmp/auto-version | ||
version="$(tail -n 1 /tmp/auto-version)" |
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.
Are you sure the version is always the last line?
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.
not 100% -- but on my test run it was.
ok -- let's try another way:
sed -ne '/Calculated SEMVER bump:/s,.*: *,,p' < /tmp/auto-version
will push now...
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #743 +/- ##
=======================================
Coverage 82.05% 82.05%
=======================================
Files 41 41
Lines 4173 4173
=======================================
Hits 3424 3424
Misses 749 749 ☔ View full report in Codecov by Sentry. |
Co-authored-by: John T. Wodder II <[email protected]>
Co-authored-by: John T. Wodder II <[email protected]>
🚀 PR was released in |
No description provided.