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

24 lines
501 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
if [ -z "$SSHPRIVKEY" ]; then
echo SSHPRIVKEY is not set
exit 1
fi
mkdir -p "$HOME/.ssh"
echo "$SSHPRIVKEY" | base64 -d >"$HOME/.ssh/id_ed25519"
chmod 0600 "$HOME/.ssh/id_ed25519"
set -x
cd generated || exit 1
git remote set-url origin git@github.com:NeoCloud/NeoNetwork-ROA.git
git config user.name "NeoCloud ROA bot"
git config user.email "support@neocloud.tw"
git add .
git commit -m "Generated at $(date -u +"%Y-%m-%dT%H:%M:%SZ")"
git push