Skip to content

Commit f400afe

Browse files
author
JeanMarc van Leerdam
committed
Fix typo and add java + sbt to the action
1 parent 3db98d6 commit f400afe

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/gh-actions.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,18 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15+
- name: Setup JDK
16+
uses: actions/setup-java@v4
17+
with:
18+
distribution: temurin
19+
java-version: 11
20+
- name: Setup sbt launcher
21+
uses: sbt/setup-sbt@v1
1522
- name: Our environment
1623
run: env | sort
1724
- name: Organisation secrets
1825
run: |
1926
echo "MAVEN_CENTRAL_TOKEN_USER starts with ${MC_TOKEN_USER:0:1} and is ${#MC_TOKEN_USER} long"
20-
echo "MAVEN_CENTRAL_TOKEN_PASSWORD starts with ${MC_TOKEN_PASSWORD:0:1} and is ${#MC_TOKEN_PASSWORD} long"
27+
echo "MAVEN_CENTRAL_TOKEN_PASSWORD starts with ${MC_TOKEN_PASS:0:1} and is ${#MC_TOKEN_PASS} long"
2128
- name: Perform the tests
2229
run: sbt clean test:compile scripted

0 commit comments

Comments
 (0)