Skip to content

Commit

Permalink
Try to not set untilBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
shadaj committed Feb 27, 2022
1 parent f1dad4d commit 588ab71
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sbt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
java-version: 1.8
- run: git fetch --unshallow
- name: Publish to Marketplace
run: sbt coreIntellijSupport/updateIntellij coreIntellijSupport/packageArtifact coreIntellijSupport/publishAutoChannel
run: sbt coreIntellijSupport/updateIntellij coreIntellijSupport/packageArtifact coreIntellijSupport/packageArtifact coreIntellijSupport/publishAutoChannel
if: github.ref == 'refs/heads/main' || github.event_name == 'release'
env:
IJ_PLUGIN_REPO_TOKEN: ${{ secrets.ij_plugin_repo_token }}
1 change: 0 additions & 1 deletion coreIntellijSupport/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ packageMethod := PackagingMethod.Standalone()
patchPluginXml := pluginXmlOptions { xml =>
xml.version = version.value
xml.sinceBuild = (intellijBuild in ThisBuild).value
xml.untilBuild = ""
}

val publishAutoChannel = taskKey[Unit]("publishAutoChannel")
Expand Down
2 changes: 1 addition & 1 deletion coreIntellijSupport/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<description>Typechecking support for the @react macro annotation in the Slinky framework for writing React apps with Scala.</description>

<idea-version since-build="PATCH" until-build="PATCH"/>
<idea-version since-build="PATCH"/>

<depends>org.intellij.scala</depends>
<depends>com.intellij.modules.java</depends>
Expand Down

0 comments on commit 588ab71

Please sign in to comment.