mirror of
https://github.com/anas-elgarhy/Ayah-intellij.git
synced 2024-08-15 00:43:43 +00:00
16 lines
511 B
YAML
16 lines
511 B
YAML
# This is a basic workflow that is manually triggered
|
|
|
|
name: Publish the plugin in marketplace
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- published # when a release is published
|
|
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 }}
|