Skip to content

Commit 44f2bf0

Browse files
committed
call wrapper
1 parent 5b6aa2b commit 44f2bf0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env bash
1+
#!/usr/bin/bash
22
set -e
33
git config --global --add safe.directory $(pwd)
44
# avoid the release loop by checking if the latest commit is a release commit
@@ -48,8 +48,8 @@ fi
4848

4949
# Do the release
5050
echo "Do mvn release:prepare with settings $MAVEN_SETTINGS_OPTION and arguments $MAVEN_ARGS"
51-
mvnw -Dusername=$GITHUB_ACCESS_TOKEN release:prepare -s $GITHUB_WORKSPACE/settings.xml -B -Darguments="$MAVEN_ARGS"
51+
./mvnw -Dusername=$GITHUB_ACCESS_TOKEN release:prepare -s $GITHUB_WORKSPACE/settings.xml -B -Darguments="$MAVEN_ARGS"
5252

5353
echo "Do mvn release:perform with arguments $MAVEN_ARGS"
54-
mvnw release:perform -s $GITHUB_WORKSPACE/settings.xml -B -Darguments="$MAVEN_ARGS"
54+
./mvnw release:perform -s $GITHUB_WORKSPACE/settings.xml -B -Darguments="$MAVEN_ARGS"
5555

0 commit comments

Comments
 (0)