|
33 | 33 | runs-on: ${{ matrix.os }} |
34 | 34 | timeout-minutes: 60 |
35 | 35 | steps: |
| 36 | + - name: Install sbt |
| 37 | + if: contains(runner.os, 'macos') |
| 38 | + shell: bash |
| 39 | + run: brew install sbt |
| 40 | + |
36 | 41 | - name: Ignore line ending differences in git |
37 | 42 | if: contains(runner.os, 'windows') |
38 | 43 | shell: bash |
@@ -107,6 +112,10 @@ jobs: |
107 | 112 | java: [temurin@11] |
108 | 113 | runs-on: ${{ matrix.os }} |
109 | 114 | steps: |
| 115 | + - name: Install sbt |
| 116 | + if: contains(runner.os, 'macos') |
| 117 | + run: brew install sbt |
| 118 | + |
110 | 119 | - name: Ignore line ending differences in git |
111 | 120 | if: contains(runner.os, 'windows') |
112 | 121 | run: git config --global core.autocrlf false |
@@ -172,6 +181,10 @@ jobs: |
172 | 181 | java: [temurin@11] |
173 | 182 | runs-on: ${{ matrix.os }} |
174 | 183 | steps: |
| 184 | + - name: Install sbt |
| 185 | + if: contains(runner.os, 'macos') |
| 186 | + run: brew install sbt |
| 187 | + |
175 | 188 | - name: Ignore line ending differences in git |
176 | 189 | if: contains(runner.os, 'windows') |
177 | 190 | run: git config --global core.autocrlf false |
@@ -208,6 +221,10 @@ jobs: |
208 | 221 | java: [temurin@11] |
209 | 222 | runs-on: ${{ matrix.os }} |
210 | 223 | steps: |
| 224 | + - name: Install sbt |
| 225 | + if: contains(runner.os, 'macos') |
| 226 | + run: brew install sbt |
| 227 | + |
211 | 228 | - name: Ignore line ending differences in git |
212 | 229 | if: contains(runner.os, 'windows') |
213 | 230 | run: git config --global core.autocrlf false |
@@ -235,7 +252,7 @@ jobs: |
235 | 252 |
|
236 | 253 | - name: Publish site |
237 | 254 | if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main' |
238 | | - uses: peaceiris/actions-gh-pages@v3.9.3 |
| 255 | + uses: peaceiris/actions-gh-pages@v4.0.0 |
239 | 256 | with: |
240 | 257 | github_token: ${{ secrets.GITHUB_TOKEN }} |
241 | 258 | publish_dir: site/target/docs/site |
|
0 commit comments