Skip to content

Commit

Permalink
Resolve case-sensitivity problem that was breaking builds on case-sen…
Browse files Browse the repository at this point in the history
…sitive FSs (in particular, CI) (#646)
  • Loading branch information
jshiell committed Aug 24, 2024
1 parent 7530a7b commit a89d15b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
body_path: ${{ github.workspace }}-CHANGELOG.txt
fail_on_unmatched_files: true
draft: false
prerelease: true
prerelease: false
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.4** Fixed: resolved case-sensitivity problem that was breaking builds on case-sensitive FSs (in particular, CI) (#646).
* **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.
Expand Down
6 changes: 1 addition & 5 deletions 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.3"
version = "5.93.4"

repositories {
mavenCentral()
Expand All @@ -35,10 +35,6 @@ intellijPlatform {

publishing {
token.set(System.getenv("JETBRAINS_PLUGIN_REPO_TOKEN"))

// Test release
channels.set(listOf("Testing"))
hidden.set(true)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ private void createCopyClassesToSandboxTask(final Project pProject, final boolea
// must remain in sync with task configuration in Gradle file
return "idea-sandbox/IC-2023.1.5/plugins"
+ (test ? "-test" : "")
+ "/CheckStyle-IDEA/" + subDirectory;
+ "/checkstyle-idea/" + subDirectory;
}

/**
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.4: Fixed: resolved case-sensitivity problem that was breaking builds on case-sensitive FSs (in particular, CI) (#646).</li>
<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>
Expand Down

0 comments on commit a89d15b

Please sign in to comment.