Skip to content
Snippets Groups Projects
Commit b9cafbbb authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

fix asset upload to github

parent 793a9afb
No related branches found
No related tags found
No related merge requests found
Pipeline #4218 failed
...@@ -12,7 +12,7 @@ if [[ ! "_$failure" = "_" ]]; then ...@@ -12,7 +12,7 @@ if [[ ! "_$failure" = "_" ]]; then
fi fi
mvn release:prepare -Darguments="-DskipTests -DperformFullRelease" mvn release:prepare -Darguments="-DskipTests -DperformFullRelease"
if [ $? -ne 0 ]; then if [[ $? -ne 0 ]]; then
exit 1 exit 1
fi fi
...@@ -20,7 +20,7 @@ echo "**********************************" ...@@ -20,7 +20,7 @@ echo "**********************************"
echo "* Performing release..." echo "* Performing release..."
echo "**********************************" echo "**********************************"
mvn release:perform --quiet -Darguments="-DskipTests -DperformFullRelease" mvn release:perform --quiet -Darguments="-DskipTests -DperformFullRelease"
if [ $? -ne 0 ]; then if [[ $? -ne 0 ]]; then
exit 1 exit 1
fi fi
...@@ -29,7 +29,7 @@ echo "* Uploading artifacts to Github..." ...@@ -29,7 +29,7 @@ echo "* Uploading artifacts to Github..."
echo "**********************************" echo "**********************************"
cd target/checkout cd target/checkout
./github.sh pre ./github.sh pre
if [ $? -ne 0 ]; then if [[ $? -ne 0 ]]; then
exit 1 exit 1
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment