diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/update-instances.yml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/.github/workflows/update-instances.yml b/.github/workflows/update-instances.yml index 2227886..07d3a9c 100644 --- a/.github/workflows/update-instances.yml +++ b/.github/workflows/update-instances.yml @@ -59,10 +59,6 @@ jobs: # ============================================================== # Push changes # ============================================================== - if [[ $(git diff-index --quiet HEAD) ]]; then - echo "No updates" - else - git add services.json - git commit -m '[CI] Auto update instances' - git push - fi + git add services.json + git commit -m '[CI] Auto update instances' || exit 0 + git push |
