Skip to content

Commit 07be6db

Browse files
committed
rename build script & constant for EAP build version
1 parent 81e68e2 commit 07be6db

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# the `language` matrix defined below to confirm you have the correct set of
1010
# supported CodeQL languages.
1111
#
12-
name: "CodeQL"
12+
name: "CI CodeQL (main)"
1313

1414
on:
1515
push:

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,11 @@ idea {
6767
}
6868

6969
var final EAP_VERSION = 'LATEST-EAP-SNAPSHOT'
70+
var final EAP_BUILD = '223'
7071

7172
// IDE version - https://www.jetbrains.com/intellij-repository/releases
7273
var idea_version = System.getenv().getOrDefault('IDEA_VERSION', '2022.2.1')
73-
var build_version = idea_version == EAP_VERSION ? '223' : idea_version.substring(2, 4) + idea_version.charAt(5) // extract e.g. '221' from '2022.1.1'
74+
var build_version = idea_version == EAP_VERSION ? EAP_BUILD : idea_version.substring(2, 4) + idea_version.charAt(5) // extract e.g. '221' from '2022.1.1'
7475

7576
version '3.0.0-' + build_version
7677

0 commit comments

Comments
 (0)