Skip to content

Add intellij plugin #18

Add intellij plugin

Add intellij plugin #18

Workflow file for this run

name: Master Workflow
on:
pull_request:
branches-ignore:
- '*release*'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build
uses: ./.github/actions/build-action
- name: Upload core artifacts
uses: actions/upload-artifact@v4
with:
name: core-${{ github.head_ref }}
path: ./core/build/libs/*.jar
- name: Upload gradle plugin artifacts
uses: actions/upload-artifact@v4
with:
name: gradle-plugin-${{ github.head_ref }}
path: ./gradle-plugin/build/libs/*.jar
- name: Upload intellij plugin artifacts
uses: actions/upload-artifact@v4
with:
name: intellij-plugin-${{ github.head_ref }}
path: ./intellij-plugin/build/distributions/*.zip