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.
2 parents 3f9f795 + 2c1ff0a commit e839a33Copy full SHA for e839a33
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