diff options
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d431b08e..4fb96bbf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,10 +17,12 @@ legacy: - echo "https://numa:$SYNC_KEY@git.themanaworld.org" > ~/.git-credentials - git submodule update --init - pwd - - ls - cd tools - - ls - ./evolved.py + - cd .. + - git status + - git config user.email "numa@themanaworld.org" + - git config user.name "Numa" - git commit -a -m "Regenerate databases" --author="Numa <numa@themanaworld.org>" - git push # may cause a CI loop >.< only: @@ -40,6 +42,7 @@ evolved: - cp -v world/map/db/mob_db.conf evolved/db/pre-re/ - cp -v world/map/db/item_db.conf evolved/db/pre-re/ - cd evolved + - git status - git config user.email "numa@themanaworld.org" - git config user.name "Numa" - git commit -a -m "Sync with Legacy repo" --author="Numa <numa@themanaworld.org>" |