|
34 | 34 | runs-on: ${{ matrix.os }}
|
35 | 35 | timeout-minutes: 60
|
36 | 36 | steps:
|
| 37 | + - name: Install sbt |
| 38 | + uses: sbt/setup-sbt@v1 |
| 39 | + |
37 | 40 | - name: Checkout current branch (full)
|
38 | 41 | uses: actions/checkout@v4
|
39 | 42 | with:
|
@@ -103,6 +106,9 @@ jobs:
|
103 | 106 | java: [temurin@11]
|
104 | 107 | runs-on: ${{ matrix.os }}
|
105 | 108 | steps:
|
| 109 | + - name: Install sbt |
| 110 | + uses: sbt/setup-sbt@v1 |
| 111 | + |
106 | 112 | - name: Checkout current branch (full)
|
107 | 113 | uses: actions/checkout@v4
|
108 | 114 | with:
|
@@ -237,13 +243,16 @@ jobs:
|
237 | 243 |
|
238 | 244 | dependency-submission:
|
239 | 245 | name: Submit Dependencies
|
240 |
| - if: github.event_name != 'pull_request' |
| 246 | + if: github.event.repository.fork == false && github.event_name != 'pull_request' |
241 | 247 | strategy:
|
242 | 248 | matrix:
|
243 | 249 | os: [ubuntu-latest]
|
244 | 250 | java: [temurin@11]
|
245 | 251 | runs-on: ${{ matrix.os }}
|
246 | 252 | steps:
|
| 253 | + - name: Install sbt |
| 254 | + uses: sbt/setup-sbt@v1 |
| 255 | + |
247 | 256 | - name: Checkout current branch (full)
|
248 | 257 | uses: actions/checkout@v4
|
249 | 258 | with:
|
@@ -301,6 +310,9 @@ jobs:
|
301 | 310 | java: [temurin@11]
|
302 | 311 | runs-on: ${{ matrix.os }}
|
303 | 312 | steps:
|
| 313 | + - name: Install sbt |
| 314 | + uses: sbt/setup-sbt@v1 |
| 315 | + |
304 | 316 | - name: Checkout current branch (full)
|
305 | 317 | uses: actions/checkout@v4
|
306 | 318 | with:
|
@@ -329,7 +341,7 @@ jobs:
|
329 | 341 |
|
330 | 342 | - name: Publish site
|
331 | 343 | if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
|
332 |
| - uses: peaceiris/actions-gh-pages@v3.9.3 |
| 344 | + uses: peaceiris/actions-gh-pages@v4.0.0 |
333 | 345 | with:
|
334 | 346 | github_token: ${{ secrets.GITHUB_TOKEN }}
|
335 | 347 | publish_dir: msite/target/docs/site
|
|
0 commit comments