Skip to content

Commit

Permalink
Create build-plugin.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kizeevov authored Oct 6, 2023
1 parent 5f1225b commit 031bd23
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build-plugin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: build plugin

on:
workflow_dispatch:

jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v1

- name: Setup Java 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

- name: Build the plugin using Gradle
run: ./gradlew buildPlugin

- name: Verify Plugin on IntelliJ Platforms
id: verify
uses: ChrisCarini/intellij-platform-plugin-verifier-action@latest
with:
ide-versions: |
ideaIU:2023.2
clion:2023.2
- name: Get log file path and print contents
run: |
echo "The verifier log file [${{steps.verify.outputs.verification-output-log-filename}}] contents : " ;
cat ${{steps.verify.outputs.verification-output-log-filename}}

0 comments on commit 031bd23

Please sign in to comment.