Skip to content

Commit 8ec75af

Browse files
committed
chore: Remove redundant validate step, Upgrade plugins to compatible versions and suppress one plugin descriptor error since the plugin was previously uploaded to the JetBrains Marketplace
1 parent a11a553 commit 8ec75af

File tree

3 files changed

+5
-20
lines changed

3 files changed

+5
-20
lines changed

.github/workflows/IJ.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,7 @@ on:
1010
branches: [ main ]
1111

1212
jobs:
13-
validate:
14-
runs-on: ubuntu-latest
15-
steps:
16-
- uses: actions/checkout@v4
17-
- name: Set up JDK 17
18-
uses: actions/setup-java@v3
19-
with:
20-
java-version: 17
21-
distribution: 'temurin'
22-
cache: 'gradle'
23-
- name: Grant execute permission for gradlew
24-
run: chmod +x gradlew
25-
- name: Build with Gradle
26-
run: >
27-
./gradlew buildPlugin
28-
-Pgpr.username=${{ github.actor }}
29-
-Pgpr.token=${{ secrets.GITHUB_TOKEN }}
30-
3113
verify:
32-
if: false
3314
runs-on: ubuntu-latest
3415

3516
steps:

build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,9 @@ intellijPlatform {
114114
ides {
115115
recommended()
116116
}
117+
freeArgs = listOf(
118+
"-mute",
119+
"TemplateWordInPluginId"
120+
)
117121
}
118122
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ gradleVersion=8.5
1010

1111
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1212
platformBundledPlugins=org.jetbrains.plugins.yaml,com.intellij.java
13-
platformPlugins=com.redhat.devtools.intellij.telemetry:1.1.0.52,org.jetbrains.plugins.go:242.20224.159,Docker:242.20224.361
13+
platformPlugins=com.redhat.devtools.intellij.telemetry:1.1.0.52,org.jetbrains.plugins.go:252.19874.12,Docker:243.21565.193
1414

1515
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
1616
kotlin.stdlib.default.dependency=false

0 commit comments

Comments
 (0)