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 788f0ca commit be0da96Copy full SHA for be0da96
.github/workflows/maven.yml
@@ -20,13 +20,18 @@ jobs:
20
steps:
21
- uses: actions/checkout@v4
22
- name: Set up JDK 17
23
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
24
with:
25
java-version: '17'
26
distribution: 'temurin'
27
cache: maven
28
- name: Build with Maven
29
run: mvn -B package --file pom.xml
30
+ - run: mkdir staging && cp target/*.jar staging
31
+ - uses: actions/upload-artifact@v4
32
+ with:
33
+ name: Package
34
+ path: staging
35
36
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
37
- name: Update dependency graph
0 commit comments