File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change @@ -154,3 +154,39 @@ jobs:
154
154
SONATYPE_PASSWORD : ${{ secrets.SONATYPE_PASSWORD }}
155
155
SONATYPE_CREDENTIAL_HOST : ${{ secrets.SONATYPE_CREDENTIAL_HOST }}
156
156
run : sbt tlCiRelease
157
+
158
+ dependency-submission :
159
+ name : Submit Dependencies
160
+ if : github.event.repository.fork == false && github.event_name != 'pull_request'
161
+ strategy :
162
+ matrix :
163
+ os : [ubuntu-22.04]
164
+ java : [temurin@8]
165
+ runs-on : ${{ matrix.os }}
166
+ steps :
167
+ - name : Checkout current branch (full)
168
+ uses : actions/checkout@v4
169
+ with :
170
+ fetch-depth : 0
171
+
172
+ - name : Setup sbt
173
+ uses : sbt/setup-sbt@v1
174
+
175
+ - name : Setup Java (temurin@8)
176
+ id : setup-java-temurin-8
177
+ if : matrix.java == 'temurin@8'
178
+ uses : actions/setup-java@v4
179
+ with :
180
+ distribution : temurin
181
+ java-version : 8
182
+ cache : sbt
183
+
184
+ - name : sbt update
185
+ if : matrix.java == 'temurin@8' && steps.setup-java-temurin-8.outputs.cache-hit == 'false'
186
+ run : sbt +update
187
+
188
+ - name : Submit Dependencies
189
+ uses : scalacenter/sbt-dependency-submission@v2
190
+ with :
191
+ modules-ignore : root_2.12
192
+ configs-ignore : test scala-tool scala-doc-tool test-internal
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ ThisBuild / githubWorkflowPublishTargetBranches := Seq(
13
13
ThisBuild / scalaVersion := " 2.12.20"
14
14
ThisBuild / tlJdkRelease := Some (8 )
15
15
ThisBuild / tlFatalWarnings := false
16
- ThisBuild / tlCiDependencyGraphJob := false
17
16
18
17
ThisBuild / mergifyStewardConfig ~= (_.map(_.withMergeMinors(true )))
19
18
You can’t perform that action at this time.
0 commit comments