mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-24 10:33:22 +03:00
21 lines
377 B
Bash
Executable File
21 lines
377 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "$2" | base64 -d > /service-account
|
|
echo "$3" | base64 -d > /id_ssh
|
|
echo "$4" | base64 -d > /id_ssh.pub
|
|
|
|
chmod 600 /service-account
|
|
chmod 600 /id_ssh
|
|
chmod 600 /id_ssh.pub
|
|
|
|
janeway \
|
|
--ci \
|
|
--verbose \
|
|
--credentials /service-account \
|
|
--ssh-key /id_ssh \
|
|
release ota \
|
|
arvo \
|
|
"$1" \
|
|
${5:+"--ref"} ${5:+"$5"} \
|
|
| bash
|