Draff 457b25b662
All checks were successful
CI / Prepare job (push) Successful in 3s
CI / Build multisrc modules (push) Successful in 2m39s
CI / Build individual modules (push) Successful in 37s
CI / Publish repo (push) Successful in 49s
Update .github/scripts/commit-repo.sh
2024-02-04 01:33:17 +00:00

15 lines
373 B
Bash
Executable File

#!/bin/bash
set -e
rsync -a --delete --exclude .git --exclude .gitignore --exclude repo.json ../master/repo/ .
git config --global user.email "gitea@catgirlsneed.homes"
git config --global user.name "Homeless Catgirl"
git status
if [ -n "$(git status --porcelain)" ]; then
git add .
git commit -m "Upload APKs"
git push
else
echo "No changes to commit"
fi