We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f9f795 commit 2c1ff0aCopy full SHA for 2c1ff0a
project/publish.sc
@@ -211,5 +211,8 @@ def setShouldPublish() = T.command {
211
sys.error("GITHUB_ENV not set")
212
val charSet = Charset.defaultCharset()
213
val nl = System.lineSeparator()
214
- os.write.append(os.Path(envFile, os.pwd), s"SHOULD_PUBLISH=${shouldPublish()}$nl".getBytes(charSet))
+ os.write.append(
215
+ os.Path(envFile, os.pwd),
216
+ s"SHOULD_PUBLISH=${shouldPublish()}$nl".getBytes(charSet)
217
+ )
218
}
0 commit comments