1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-06-29 21:18:41 +08:00
NeoNetwork/.scripts/push-to-roa.sh

22 lines
421 B
Bash
Raw Normal View History

2020-07-21 00:19:10 +08:00
#!/usr/bin/env bash
2020-07-21 00:40:22 +08:00
set -euo pipefail
2020-07-21 00:19:10 +08:00
IFS=$'\n\t'
2020-07-21 00:49:25 +08:00
if [ ! -n "$SSHPRIVKEY" ]; then
2020-07-21 00:19:10 +08:00
echo SSHPRIVKEY is not set
exit 1
fi
2020-07-21 00:40:22 +08:00
2020-07-21 00:19:10 +08:00
mkdir -p "$HOME/.ssh"
echo "$SSHPRIVKEY" | base64 -d >"$HOME/.ssh/id_ed25519"
chmod 0600 "$HOME/.ssh/id_ed25519"
2020-07-21 00:40:22 +08:00
set -x
pushd generated
git add .
2020-07-21 00:19:10 +08:00
git config user.name "neonet roa bot"
git config user.email "bot@github.com"
git commit -m "Generated at $(TZ='UTC' date +%Y%m%d-%H%M%S.%N)"
2020-07-21 01:26:30 +08:00
git push