mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-05 05:22:24 +08:00
13 lines
248 B
Bash
Executable file
13 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
|