Skip to content

Commit

Permalink
Simplify CI targets to try and resolve artefact generation issue (#646)
Browse files Browse the repository at this point in the history
  • Loading branch information
jshiell committed Aug 24, 2024
1 parent 2f2c9ab commit 7530a7b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
distribution: liberica

- name: Build
run: ./gradlew check
run: ./gradlew build
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
distribution: liberica

- name: Build
run: ./gradlew check buildPlugin
run: ./gradlew build

- name: Release
uses: softprops/action-gh-release@v2
with:
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

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
id("org.infernus.idea.checkstyle.build")
}

version = "5.93.2"
version = "5.93.3"

repositories {
mavenCentral()
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<change-notes>
<![CDATA[
<ul>
<li>5.93.3: WiP: test release to verify artefact generation on CI (#646).</li>
<li>5.93.2: WiP: test release to verify distribution workflow (#646).</li>
<li>5.93.1: Fixed: NPE when filtering tree results with no children.</li>
<li>5.93.0: New: Files in results are now hidden when all of their children aren't visible in the current filtering state (#644).</li>
Expand Down

0 comments on commit 7530a7b

Please sign in to comment.