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.
2 parents 525579c + f206581 commit efbebdaCopy full SHA for efbebda
1 file changed
.github/workflows/ci.yml
@@ -23,6 +23,19 @@ jobs:
23
- name: Build and test
24
run: mvn -B clean verify --file pom.xml
25
26
+ - name: Get project version
27
+ id: version
28
+ run: echo "VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> "$GITHUB_OUTPUT"
29
+
30
+ - name: Rename JAR for release
31
+ run: cp target/MiningLevels-${{ steps.version.outputs.VERSION }}.jar target/MiningLevels-v${{ steps.version.outputs.VERSION }}.jar
32
33
+ - name: Upload plugin JAR
34
+ uses: actions/upload-artifact@v4
35
+ with:
36
+ name: MiningLevels-v${{ steps.version.outputs.VERSION }}
37
+ path: target/MiningLevels-v${{ steps.version.outputs.VERSION }}.jar
38
39
- name: Upload test results
40
if: always()
41
uses: actions/upload-artifact@v4
0 commit comments