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 f91646b commit 78e9155Copy full SHA for 78e9155
.github/workflows/ci.yml
@@ -27,7 +27,8 @@ jobs:
27
- 1.8
28
- 9
29
- 11 # LTS
30
- - 15
+ - 17 # LTS
31
+ - 19
32
33
steps:
34
- uses: actions/checkout@v2
@@ -48,6 +49,17 @@ jobs:
48
49
run: mvn --batch-mode test
50
working-directory: svg-core
51
52
+ - name: Package artifacts
53
+ if: matrix.java == '1.8'
54
+ run: mvn --batch-mode package
55
+ working-directory: svg-core
56
+
57
+ - name: Upload artifacts
58
+ uses: actions/upload-artifact@v3
59
60
+ with:
61
+ name: svgSalamander-build-artifacts
62
+ path: svg-core/target/svgSalamander-*.jar
63
64
deploy:
65
runs-on: ubuntu-latest
0 commit comments