Skip to content

Commit 8f3a5be

Browse files
committed
Regenerate GitHub Actions workflow
Executed command: sbt githubWorkflowGenerate
1 parent 6db71d7 commit 8f3a5be

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ jobs:
3838
runs-on: ${{ matrix.os }}
3939
timeout-minutes: 60
4040
steps:
41+
- name: Install sbt
42+
uses: sbt/setup-sbt@v1
43+
4144
- name: Checkout current branch (full)
4245
uses: actions/checkout@v4
4346
with:
@@ -112,6 +115,9 @@ jobs:
112115
java: [temurin@17]
113116
runs-on: ${{ matrix.os }}
114117
steps:
118+
- name: Install sbt
119+
uses: sbt/setup-sbt@v1
120+
115121
- name: Checkout current branch (full)
116122
uses: actions/checkout@v4
117123
with:
@@ -199,13 +205,16 @@ jobs:
199205

200206
dependency-submission:
201207
name: Submit Dependencies
202-
if: github.event_name != 'pull_request'
208+
if: github.event.repository.fork == false && github.event_name != 'pull_request'
203209
strategy:
204210
matrix:
205211
os: [ubuntu-latest]
206212
java: [temurin@17]
207213
runs-on: ${{ matrix.os }}
208214
steps:
215+
- name: Install sbt
216+
uses: sbt/setup-sbt@v1
217+
209218
- name: Checkout current branch (full)
210219
uses: actions/checkout@v4
211220
with:

0 commit comments

Comments
 (0)