File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -139,6 +139,9 @@ jobs:
139
139
echo "$PGP_PASSPHRASE" | gpg --pinentry-mode loopback --passphrase-fd 0 --import /tmp/signing-key.gpg
140
140
(echo "$PGP_PASSPHRASE"; echo; echo) | gpg --command-fd 0 --pinentry-mode loopback --change-passphrase $(gpg --list-secret-keys --with-colons 2> /dev/null | grep '^sec:' | cut --delimiter ':' --fields 5 | tail -n 1)
141
141
142
+ - name : Setup sbt
143
+ uses : sbt/setup-sbt@v1
144
+
142
145
- name : Publish
143
146
run : sbt tlCiRelease
144
147
Original file line number Diff line number Diff line change @@ -44,11 +44,13 @@ ThisBuild / scmInfo := Some(
44
44
45
45
ThisBuild / crossScalaVersions := Seq (" 2.11.12" , " 2.12.16" , " 2.13.7" , " 3.1.3" )
46
46
47
- ThisBuild / githubWorkflowBuildPreamble ++= Seq (
48
- WorkflowStep .Use (
47
+ val setupSbt = WorkflowStep .Use (
49
48
UseRef .Public (" sbt" , " setup-sbt" , " v1" ),
50
49
name = Some (" Setup sbt" )
51
- ),
50
+ )
51
+
52
+ ThisBuild / githubWorkflowBuildPreamble ++= Seq (
53
+ setupSbt,
52
54
WorkflowStep .Use (
53
55
UseRef .Public (" actions" , " setup-node" , " v3" ),
54
56
name = Some (" Setup NodeJS v18 LTS" ),
@@ -62,6 +64,8 @@ ThisBuild / githubWorkflowBuildPreamble ++= Seq(
62
64
),
63
65
)
64
66
67
+ ThisBuild / githubWorkflowPublishPreamble += setupSbt
68
+
65
69
val ciVariants = List (" ciNode" , " ciFirefox" , " ciChrome" , " ciJSDOMNodeJS" )
66
70
67
71
ThisBuild / githubWorkflowBuildMatrixAdditions += " ci" -> ciVariants
You can’t perform that action at this time.
0 commit comments