Skip to content

Commit 5eba949

Browse files
committed
Fix workflows
1 parent 19bbdf3 commit 5eba949

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
~/.ivy2/cache
3232
key: ${{ runner.os }}-${{ hashFiles('build.sbt') }}
3333
- name: Run tests
34-
run: sbt +test
34+
run: sbt test
3535

3636
compile-microsite:
3737
runs-on: ubuntu-latest

.github/workflows/publish.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
18+
fetch-depth: 0
1819
- name: Set up JDK 17
1920
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
2021
with:
@@ -26,13 +27,13 @@ jobs:
2627
uses: sbt/setup-sbt@3e125ece5c3e5248e18da9ed8d2cce3d335ec8dd # v1.1.14
2728

2829
- name: Run tests
29-
run: sbt +test
30+
run: sbt test
3031

3132

3233
- name: Import PGP key
3334
run: echo -e "${{secrets.GPG_KEY}}" | gpg --batch --import
3435

3536
- name: Publish packages
3637
run: |
37-
sbt +publishSigned
38+
sbt publishSigned
3839

0 commit comments

Comments
 (0)