We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e181b6c commit 302a6fdCopy full SHA for 302a6fd
1 file changed
.github/workflows/ci.yml
@@ -12,5 +12,24 @@ 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@v4
18
+ with:
19
+ name: Package
20
+ path: library
21
+ retention-days: 1
22
+ test-jdk17:
23
+ runs-on: ubuntu-slim
24
+ steps:
25
+ - uses: actions/checkout@v6
26
+ - uses: actions/setup-java@v5
27
28
+ java-version: '17'
29
+ distribution: 'temurin'
30
+ cache: maven
31
+ - uses: actions/download-artifact@v5
32
33
+ name: my-artifact
34
+ - run: ls -al library
35
+
0 commit comments