-
Notifications
You must be signed in to change notification settings - Fork 3.8k
fix: jetbrains release action #7004
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
Conversation
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.
cubic analysis
1 issue found across 1 file • Review in cubic
React with 👍 or 👎 to teach cubic. You can also tag @cubic-dev-ai to give feedback, ask questions, or re-run the review.
| echo "EOF" >> $GITHUB_OUTPUT | ||
| ./gradlew listProductsReleases # prepare list of IDEs for Plugin Verifier | ||
| ./gradlew printProductsReleases # prepare list of IDEs for Plugin Verifier |
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.
Changing the Gradle task to printProductsReleases while later workflow steps still expect build/listProductsReleases.txt introduces a mismatch that can break caching and verification steps.
Prompt for AI agents
Address the following comment on .github/workflows/jetbrains-release.yaml at line 143:
<comment>Changing the Gradle task to printProductsReleases while later workflow steps still expect build/listProductsReleases.txt introduces a mismatch that can break caching and verification steps.</comment>
<file context>
@@ -140,7 +140,7 @@ jobs:
echo "$CHANGELOG" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- ./gradlew listProductsReleases # prepare list of IDEs for Plugin Verifier
+ ./gradlew printProductsReleases # prepare list of IDEs for Plugin Verifier
# # Setup Node.js
</file context>
Patrick-Erichsen
left a comment
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.
cc @exigow for visibility
|
🎉 This PR is included in version 1.5.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
|
🎉 This PR is included in version 1.7.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Description
Fixes mis-named gradle action caused by updating intellij plugin version (listProductsReleases became silent)
Summary by cubic
Fixed the JetBrains release workflow by updating the Gradle command to use the correct property for listing IDE releases.