1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-05-17 09:41:46 +08:00
NeoNetwork/scripts/push-to-roa.sh
2020-07-26 20:48:05 +08:00

14 lines
248 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
set -x
cd generated || exit 1
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