GitHub Actions: rearrange the Build workflow

This commit is contained in:
Jakub Chrzanowski
2023-08-04 12:31:24 +02:00
parent 9be85b8e62
commit 9f26d955a6
2 changed files with 3 additions and 2 deletions

View File

@@ -173,7 +173,7 @@ jobs:
# Run plugin structure verification along with IntelliJ Plugin Verifier
verify:
name: Verify plugin
needs: [ build, test, inspectCode ]
needs: [ build ]
runs-on: ubuntu-latest
steps:
@@ -218,7 +218,7 @@ jobs:
releaseDraft:
name: Release draft
if: github.event_name != 'pull_request'
needs: [ build, verify ]
needs: [ build, test, inspectCode, verify ]
runs-on: ubuntu-latest
permissions:
contents: write