Skip to content

Bump org.jetbrains.intellij.platform from 2.1.0 to 2.2.0 #100

Bump org.jetbrains.intellij.platform from 2.1.0 to 2.2.0

Bump org.jetbrains.intellij.platform from 2.1.0 to 2.2.0 #100

Workflow file for this run

name: Create
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install .NET 6 SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.x'
- name: Build Plugin
run: ./gradlew buildPlugin
- name: Publish Artifact
uses: actions/[email protected]
with:
name: Artifacts
path: output
retention-days: 7
- name: Publish plugins to jetbrains
shell: cmd
run: ./gradlew publishPlugin -PPublishToken="%PublishKey%"
env:
PublishKey: ${{ secrets.PublishKey }}
if: github.event_name != 'pull_request'