Skip to content

Commit a62f45e

Browse files
committed
Fix release workflow without packages (5 - toast)
1 parent 48d3b10 commit a62f45e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,19 @@ jobs:
4949
- name: Build ${{ steps.project-name.outputs.result }}
5050
id: maven-build
5151
run: |
52+
echo ::group::Maven build
5253
mvn -B clean install
54+
echo ::endgroup::
5355
5456
# Maven shade keeps the unshaded JAR under target/original-vvv.jar
5557
# We don't want to put this unshaded JAR in the release because it wouldn't
5658
# work on a server.
5759
JAR_PATH=$(ls ./target/*.jar | grep -vE "^[^/]+/original-" | tail -n 1)
5860
JAR_NAME=$(basename $JAR_PATH)
5961
62+
echo $JAR_PATH
63+
echo $(ls ./target/*.jar | grep -vE "^[^/]+/original-")
64+
6065
echo "::set-output name=jar_path::$JAR_PATH"
6166
echo "::set-output name=jar_name::$JAR_NAME"
6267
env:

0 commit comments

Comments
 (0)