We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3db98d6 commit f400afeCopy full SHA for f400afe
1 file changed
.github/workflows/gh-actions.yml
@@ -12,11 +12,18 @@ jobs:
12
runs-on: ubuntu-latest
13
steps:
14
- 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
22
- name: Our environment
23
run: env | sort
24
- name: Organisation secrets
25
run: |
26
echo "MAVEN_CENTRAL_TOKEN_USER starts with ${MC_TOKEN_USER:0:1} and is ${#MC_TOKEN_USER} long"
- 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"
28
- name: Perform the tests
29
run: sbt clean test:compile scripted
0 commit comments