arkon f3e86f75be [skip ci] Revert "[skip ci] Purge cached index on jsDelivr"
This reverts commit f82b4bb69d7d85c0996e0775e2cde3d374eba5fc.
2021-07-20 17:21:56 -04:00

15 lines
387 B
Bash
Executable File

#!/bin/bash
set -e
rsync -a --delete --exclude .git --exclude .gitignore ../master/repo/ .
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git status
if [ -n "$(git status --porcelain)" ]; then
git add .
git commit -m "Update extensions repo"
git push
else
echo "No changes to commit"
fi