Initial commit
All checks were successful
Build and Push RunPod Docker Image / build-and-push (push) Successful in 14s

This commit is contained in:
2025-11-26 18:04:53 +01:00
parent 5c61ac5c67
commit 5f8c843b22
5 changed files with 175 additions and 32 deletions

View File

@@ -25,7 +25,7 @@ if [ ! -d "$PWD/bin" ] ; then
git clone https://dev.pivoine.art/valknar/bin.git "$PWD/bin"
echo " ✓ bin cloned"
else
cd "$PWD/bin" && git stash && git pull && git stash pop || true
cd "$PWD/bin" && git fetch && git reset --hard origin/main
echo " ✓ bin updated"
cd -
fi
@@ -33,7 +33,7 @@ if [ ! -d "$PWD/orchestrator" ] ; then
git clone https://dev.pivoine.art/valknar/runpod-ai-orchestrator.git "$PWD/orchestrator"
echo " ✓ orchestrator cloned"
else
cd "$PWD/orchestrator" && git stash && git pull && git stash pop || true
cd "$PWD/orchestrator" && git fetch && git reset --hard origin/main
echo " ✓ orchestrator updated"
cd -
fi