Skip to content

Commit ecce65e

Browse files
committed
copy artifact
1 parent e181b6c commit ecce65e

1 file changed

Lines changed: 22 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,25 @@ jobs:
1212
java-version: '8'
1313
distribution: 'temurin'
1414
cache: maven
15-
- name: Build and Test
16-
run: ./mvnw verify -Dgpg.skip
15+
- run: ./mvnw verify -Dgpg.skip
16+
- 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+
with:
29+
java-version: '17'
30+
distribution: 'temurin'
31+
cache: maven
32+
- uses: actions/download-artifact@v8
33+
with:
34+
name: Library
35+
- run: ls -al .
36+

0 commit comments

Comments
 (0)