publish.yml 511 B

1234567891011121314151617
  1. # This is a basic workflow that is manually triggered
  2. name: Publish the plugin in marketplace
  3. on:
  4. release:
  5. types:
  6. - published # when a release is published
  7. jobs:
  8. deploying:
  9. runs-on: ubuntu-latest
  10. # Steps represent a sequence of tasks that will be executed as part of the job
  11. steps:
  12. # Runs a single command using the runners shell
  13. - name: Deploying a Plugin with Gradle
  14. run: ./gradlew publishPlugin -Dorg.gradle.project.intellijPublishToken=${{ secrets.PUBLISH_TOKEN }}