Ayah-intellij/.github/workflows/publish.yml

17 lines
511 B
YAML
Raw Permalink Normal View History

2022-08-22 09:35:58 +00:00
# This is a basic workflow that is manually triggered
name: Publish the plugin in marketplace
2022-08-22 09:35:58 +00:00
on:
2022-08-22 09:35:10 +00:00
release:
2022-08-22 09:39:44 +00:00
types:
- published # when a release is published
2022-08-22 09:35:58 +00:00
jobs:
deploying:
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Runs a single command using the runners shell
- name: Deploying a Plugin with Gradle
run: ./gradlew publishPlugin -Dorg.gradle.project.intellijPublishToken=${{ secrets.PUBLISH_TOKEN }}