From 7530a7b2842b8f1722cc8ada82dfc571b7295021 Mon Sep 17 00:00:00 2001 From: Jamie Shiell Date: Sat, 24 Aug 2024 13:35:30 +0100 Subject: [PATCH] Simplify CI targets to try and resolve artefact generation issue (#646) --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 4 ++-- CHANGELOG.md | 1 + build.gradle.kts | 2 +- src/main/resources/META-INF/plugin.xml | 1 + 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f51200c..19e8ff5b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,4 +20,4 @@ jobs: distribution: liberica - name: Build - run: ./gradlew check + run: ./gradlew build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9261d540..85c5ddd9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: distribution: liberica - name: Build - run: ./gradlew check buildPlugin + run: ./gradlew build - name: Release uses: softprops/action-gh-release@v2 @@ -34,7 +34,7 @@ jobs: body_path: ${{ github.workspace }}-CHANGELOG.txt fail_on_unmatched_files: true draft: false - prerelease: false + prerelease: true files: build/distributions/checkstyle-idea-${{ steps.build_info.outputs.build_tag }}.zip diff --git a/CHANGELOG.md b/CHANGELOG.md index 08598586..d6af70df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # CheckStyle-IDEA Changelog +* **5.93.3** WiP: test release to verify artefact generation on CI (#646). * **5.93.2** WiP: test release to verify distribution workflow (#646). * **5.93.1** Fixed: NPE when filtering tree results with no children. * **5.93.0** New: Files in results are now hidden when all of their children aren't visible in the current filtering state (#644). diff --git a/build.gradle.kts b/build.gradle.kts index b1434be2..cc17f7a3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { id("org.infernus.idea.checkstyle.build") } -version = "5.93.2" +version = "5.93.3" repositories { mavenCentral() diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 72141be2..37bbedb0 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -25,6 +25,7 @@ +
  • 5.93.3: WiP: test release to verify artefact generation on CI (#646).
  • 5.93.2: WiP: test release to verify distribution workflow (#646).
  • 5.93.1: Fixed: NPE when filtering tree results with no children.
  • 5.93.0: New: Files in results are now hidden when all of their children aren't visible in the current filtering state (#644).