File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 8181 # Collect Tests Result of failed tests
8282 - name : Collect Tests Result
8383 if : ${{ failure() }}
84- uses : actions/upload-artifact@v3
84+ uses : actions/upload-artifact@v4
8585 with :
8686 name : tests-result
8787 path : ${{ github.workspace }}/build/reports/tests
@@ -100,7 +100,7 @@ jobs:
100100 # Collect Plugin Verifier Result
101101 - name : Collect Plugin Verifier Result
102102 if : ${{ always() }}
103- uses : actions/upload-artifact@v3
103+ uses : actions/upload-artifact@v4
104104 with :
105105 name : pluginVerifier-result
106106 path : ${{ github.workspace }}/build/reports/pluginVerifier
@@ -118,7 +118,7 @@ jobs:
118118
119119 # Store already-built plugin as an artifact for downloading
120120 - name : Upload artifact
121- uses : actions/upload-artifact@v3
121+ uses : actions/upload-artifact@v4
122122 with :
123123 name : ${{ steps.artifact.outputs.filename }}
124124 path : ./build/distributions/content/*/*
Original file line number Diff line number Diff line change 33# responsive-intellij-plugin Changelog
44
55## Unreleased
6+ ### Added
7+ - Update ` pluginUntilBuild ` to include all future versions
68
79## 0.1.8 - 2024-06-07
810
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ tasks {
7272 patchPluginXml {
7373 version.set(properties(" pluginVersion" ))
7474 sinceBuild.set(properties(" pluginSinceBuild" ))
75- untilBuild.set(properties( " pluginUntilBuild " ) )
75+ untilBuild.set(null )
7676
7777 // Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
7878 pluginDescription.set(
Original file line number Diff line number Diff line change 44pluginGroup = com.github.tiste.responsiveintellijplugin
55pluginName = responsive-intellij-plugin
66# SemVer format -> https://semver.org
7- pluginVersion = 0.1.8
7+ pluginVersion = 0.1.9
88
99# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010# for insight into build numbers and IntelliJ Platform versions.
1111pluginSinceBuild = 211
12- pluginUntilBuild = 241.*
1312
1413# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
1514platformType = IC
You can’t perform that action at this time.
0 commit comments