We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e181b6c commit ecce65eCopy full SHA for ecce65e
1 file changed
.github/workflows/ci.yml
@@ -12,5 +12,25 @@ jobs:
12
java-version: '8'
13
distribution: 'temurin'
14
cache: maven
15
- - name: Build and Test
16
- run: ./mvnw verify -Dgpg.skip
+ - run: ./mvnw verify -Dgpg.skip
+ - run: mkdir library && cp target/*.jar library
17
+ - uses: actions/upload-artifact@v7
18
+ with:
19
+ name: Library
20
+ path: library
21
+ retention-days: 1
22
+ test-jdk17:
23
+ needs: build
24
+ runs-on: ubuntu-slim
25
+ steps:
26
+ - uses: actions/checkout@v6
27
+ - uses: actions/setup-java@v5
28
29
+ java-version: '17'
30
+ distribution: 'temurin'
31
+ cache: maven
32
+ - uses: actions/download-artifact@v8
33
34
35
+ - run: ls -al .
36
+
0 commit comments