Skip to content

feat: auto pre-release for VSC. +JB #5320

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

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ jobs:
gh release create "$NEW_VERSION" \
--generate-notes \
--title "$NEW_VERSION" \
--draft \
--latest \
--prerelease

Expand Down Expand Up @@ -65,6 +64,5 @@ jobs:
gh release create "$NEW_VERSION" \
--generate-notes \
--title "$NEW_VERSION" \
--draft \
--latest \
--prerelease
3 changes: 2 additions & 1 deletion extensions/intellij/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ tasks {
channels.set(listOf(environment("RELEASE_CHANNEL").getOrElse("eap")))

// We always hide the stable releases until a few days of EAP have proven them stable
// hidden = environment("RELEASE_CHANNEL").map { it == "stable" }.getOrElse(false)
val releaseChannel = environment("RELEASE_CHANNEL").getOrElse("eap")
hidden.set(releaseChannel == "default")
}

runIde {
Expand Down
Loading