Skip to content

Commit e1c28e5

Browse files
committed
releasePlugin right after build
1 parent 552c157 commit e1c28e5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/jetbrains-release.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,15 @@ jobs:
198198
- name: Build plugin
199199
run: ./gradlew buildPlugin
200200

201+
# Publish the plugin to JetBrains Marketplace
202+
- name: Publish Plugin
203+
env:
204+
PUBLISH_TOKEN: ${{ secrets.JETBRAINS_PUBLISH_TOKEN }}
205+
CERTIFICATE_CHAIN: ${{ secrets.JETBRAINS_CERTIFICATE_CHAIN }}
206+
PRIVATE_KEY: ${{ secrets.JETBRAINS_PRIVATE_KEY }}
207+
PRIVATE_KEY_PASSWORD: ${{ secrets.JETBRAINS_PRIVATE_KEY_PASSWORD }}
208+
run: ./gradlew publishPlugin
209+
201210
# Prepare plugin archive content for creating artifact
202211
- name: Prepare Plugin Artifact
203212
id: artifact
@@ -251,6 +260,7 @@ jobs:
251260
path: ./binary/bin/linux-x64/
252261

253262
test-binaries:
263+
if: false
254264
needs: build
255265
strategy:
256266
matrix:
@@ -467,6 +477,7 @@ jobs:
467477
path: ${{ github.workspace }}/build/reports/pluginVerifier
468478

469479
upload-release:
480+
if: false
470481
name: Upload Release
471482
needs:
472483
- build

0 commit comments

Comments
 (0)