From 9f26d955a6241e524775a9be3e6b7f74142244cc Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Fri, 4 Aug 2023 12:31:24 +0200 Subject: [PATCH] GitHub Actions: rearrange the Build workflow --- .github/workflows/build.yml | 4 ++-- CHANGELOG.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d84b9dd..f13f434 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c5e4ee..912d0de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ - GitHub Actions: set `gradle-home-cache-cleanup: true` flag to the Gradle Build Action ### Changed +- GitHub Actions: rearrange the Build workflow - Dependencies - upgrade `org.jetbrains.kotlinx.kover` to `0.7.3` - Dependencies (GitHub Actions) - upgrade `gradle/wrapper-validation-action` to `v1.1.0` - Dependencies (GitHub Actions) - upgrade `JetBrains/qodana-action` to `v2023.2.1`