Skip to content

Commit 235c575

Browse files
committed
Fix step condition
1 parent 4b753f9 commit 235c575

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
run: sbt ++${{ matrix.scala }} test
6969

7070
- name: Build and test sbt plugin
71-
if: ${{ matrix.scala == 2.12.13 }}
71+
if: matrix.scala == '2.12.13'
7272
run: sbt ++${{ matrix.scala }} scripted
7373

7474
- name: Compress target directories

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ For most use cases you should add Scala2PlantUML as a global plugin since your b
3333
Create `~/.sbt/1.0/plugins/scala2PlantUML.sbt` containing:
3434

3535
```text
36-
addSbtPlugin("nz.co.bottech" % "sbt-scala2plantuml" % "0.1.3")
36+
addSbtPlugin("nz.co.bottech" % "sbt-scala2plantuml" % "0.1.4")
3737
```
3838

3939
## CLI
@@ -49,7 +49,7 @@ cs install --channel https://git.io/Jqv1i scala2plantuml
4949
### Usage
5050

5151
```text
52-
Scala2PlantUML version 0.1.3
52+
Scala2PlantUML version 0.1.4
5353
Usage: scala2plantuml [options] symbol
5454
5555
Scala2PlantUML generates PlantUML Class Diagrams from Scala SemanticDB files.

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ inThisBuild(
6969
WorkflowStep.Sbt(
7070
List("scripted"),
7171
name = Some("Build and test sbt plugin"),
72-
cond = Some(s"""$${{ matrix.scala == $scala212 }}""")
72+
cond = Some(s"""matrix.scala == '$scala212'""")
7373
)
7474
),
7575
githubWorkflowPublish := List(
@@ -88,7 +88,7 @@ inThisBuild(
8888
// This needs to be set otherwise the GitHub workflow plugin gets confused about which
8989
// version to use for the publish job.
9090
scalaVersion := scala212,
91-
versionPolicyFirstVersion := Some("0.1.3"),
91+
versionPolicyFirstVersion := Some("0.1.4"),
9292
versionPolicyIntention := Compatibility.BinaryAndSourceCompatible,
9393
versionScheme := Some("early-semver")
9494
)

0 commit comments

Comments
 (0)