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 559bb23 commit e2421a7Copy full SHA for e2421a7
.github/workflows/maven.yml
@@ -10,10 +10,10 @@ jobs:
10
steps:
11
- name: Fetch Project
12
uses: actions/checkout@v4
13
- - name: Setting Up Java 17
+ - name: Setting Up Java 21
14
uses: actions/setup-java@v4
15
with:
16
- java-version: '17'
+ java-version: '21'
17
distribution: 'zulu'
18
cache: maven
19
- name: Build and Package Plugin
@@ -24,7 +24,7 @@ jobs:
24
echo "artifactPath=${artifactPath}" >> $GITHUB_ENV
25
echo "artifactName=${artifactName}" >> $GITHUB_ENV
26
echo git_hash=${git_hash} >> $GITHUB_ENV
27
- mvn clean package
+ mvn clean install -DskipTests
28
mv "${artifactPath}/${artifactName}.jar" "${artifactPath}/${artifactName}-${git_hash}.jar"
29
- name: Upload Artifact
30
uses: actions/upload-artifact@v4
0 commit comments