Skip to content
Snippets Groups Projects
Commit 3d04a8c0 authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

Try multiline scripts

parent a266e7a0
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,14 @@ installbinaries:
- mkdir -p ~/.elixxir
- mkdir -p bin
- "DOWNLOADS=\"$SERVER_URL $CLIENT_URL $REGISTRATION_URL $UDB_URL $GATEWAY_URL\""
- "for D in $DOWNLOADS; do curl -f -L -H \"PRIVATE-TOKEN: $PATKEY\" $D; done"
- >
if [ "$CI_BUILD_REF_NAME" == "master" ]; then
DOWNLOADS=$(echo $DOWNLOADS | sed -i "s/artifacts\/$DEFAULTBRANCH\/raw/artifacts\/master\/raw/g")
done
- >
for D in $DOWNLOADS; do
curl -f -L -H "PRIVATE-TOKEN: $PATKEY" $D
done
- mv server.linux64 bin/server
- mv client.linux64 bin/client
- mv udb.linux64 bin/udb
......
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