OcttKB/GitLab.CrossRepoSync.sh
octt e0528394e6 Update 2 files
- /GitLab.CrossRepoSync.sh
- /GitLab.Main.sh
2023-03-24 11:38:21 +00:00

9 lines
259 B
Bash
Executable File

#!/bin/sh
TargetRepo="OcttKB.Web"
git clone --depth 1 https://gitlab.com/octtspacc/$TargetRepo ./Repo-$TargetRepo
cd ./Repo-$TargetRepo
cp -v ../Output.tmp/index.html ./public/index.html
git add .
git commit -m "OcttKB Cross-Repo Sync (Raw to HTML)"
git push