Skip to content

Commit

Permalink
CI: Fix deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
seclerp committed Apr 5, 2023
1 parent d5269fd commit d49fd93
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ jobs:
- name: 🚀 Publish Plugin
uses: gradle/gradle-build-action@v2
with:
arguments: publishPlugin -PPublishToken=${{ secrets.JB_PUBLISH_TOKEN }} -PPublishChannel=${{ github.event.inputs.channel }}
arguments: publishPlugin -PpublishToken=${{ secrets.JB_PUBLISH_TOKEN }} -PpublishChannel=${{ github.event.inputs.channel }}
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {
plugins {
id("me.filippov.gradle.jvm.wrapper") version "0.14.0"
id("org.jetbrains.changelog") version "2.0.0"
id("org.jetbrains.intellij") version "1.13.2"
id("org.jetbrains.intellij") version "1.13.3"
id("org.jetbrains.kotlin.jvm") version "1.7.20"
}

Expand Down Expand Up @@ -238,6 +238,11 @@ tasks {

buildPlugin {
dependsOn(compileDotNet)

copy {
from("${buildDir}/distributions/${rootProject.name}-${version}.zip")
into("${rootDir}/output")
}
}

runIde {
Expand Down

0 comments on commit d49fd93

Please sign in to comment.