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 48d3b10 commit a62f45eCopy full SHA for a62f45e
.github/workflows/release.yml
@@ -49,14 +49,19 @@ jobs:
49
- name: Build ${{ steps.project-name.outputs.result }}
50
id: maven-build
51
run: |
52
+ echo ::group::Maven build
53
mvn -B clean install
54
+ echo ::endgroup::
55
56
# Maven shade keeps the unshaded JAR under target/original-vvv.jar
57
# We don't want to put this unshaded JAR in the release because it wouldn't
58
# work on a server.
59
JAR_PATH=$(ls ./target/*.jar | grep -vE "^[^/]+/original-" | tail -n 1)
60
JAR_NAME=$(basename $JAR_PATH)
61
62
+ echo $JAR_PATH
63
+ echo $(ls ./target/*.jar | grep -vE "^[^/]+/original-")
64
+
65
echo "::set-output name=jar_path::$JAR_PATH"
66
echo "::set-output name=jar_name::$JAR_NAME"
67
env:
0 commit comments