Skip to content

feat: support IDEA 2025.2 #20

feat: support IDEA 2025.2

feat: support IDEA 2025.2 #20

Workflow file for this run

name: Build Plugin
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
CI_BUILD_VERSION: 1.3.7.${{ github.run_number }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build 2023.1
run: ./gradlew buildPlugin -DIDEA_VER=231
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: v${{ env.CI_BUILD_VERSION }}
path: build/distributions/*.zip