fix(ruby): retrieve devtools version dynamically for package verification#17335
fix(ruby): retrieve devtools version dynamically for package verification#17335
Conversation
Review Summary by QodoFix Ruby release verification using dynamic devtools version
WalkthroughsDescription• Adds dynamic devtools version retrieval for package verification • Fixes release workflow by using correct devtools version • Prevents verification failures during Ruby package publishing File Changes1. rake_tasks/ruby.rake
|
Code Review by Qodo
|
There was a problem hiding this comment.
Pull request overview
Updates the Ruby release verification rake task to check the selenium-devtools gem using its own dynamically-derived version (instead of incorrectly reusing the selenium-webdriver gem version), fixing release workflow package-published verification.
Changes:
- Add
devtools_versionhelper to read the Ruby DevTools gem version fromrb/lib/selenium/devtools/version.rb. - Use
devtools_versionwhen verifying theselenium-devtoolsRubyGems publication URL.
💥 What does this PR do?
The release workflow fails because, at the step where packages are verified to see if they are published, the devtools package in RubyGems is being checked with the wrong version. This PR makes the check use the actual and correct version.