Skip to content
Snippets Groups Projects
Commit ab66bb53 authored by Vincent Texier's avatar Vincent Texier
Browse files

[CI] Fix .push_to_github to remove all files in repo

Fix gitlab merge-requests branch removal
parent 940f112e
No related branches found
No related tags found
1 merge request!76Merge of 0550 to dev
Pipeline #6137 passed
...@@ -14,17 +14,19 @@ image: registry.duniter.org/docker/python3/duniterpy-builder:0.0.4 ...@@ -14,17 +14,19 @@ image: registry.duniter.org/docker/python3/duniterpy-builder:0.0.4
tags: tags:
- github - github
after_script: after_script:
# remove last clone # remove all files in current repo
- rm -rf ./* - rm -rf ./*
- rm -rf .git - rm -rf .git*
# do a mirror clone # do a mirror clone in current repo
- git clone --mirror $CI_REPOSITORY_URL . - git clone --mirror $CI_REPOSITORY_URL .
# do config for github push
- git remote add github $GITHUB_URL_AND_KEY - git remote add github $GITHUB_URL_AND_KEY
- git config --global user.email "contact@duniter.org" - git config --global user.email "contact@duniter.org"
- git config --global user.name "Duniter" - git config --global user.name "Duniter"
# Job would fail if we don't remove refs about pull requests # remove refs about merge requests
- bash -c "cat packed-refs | grep -v 'refs/pull' > packed-refs-new; echo 'Removed pull refs.'" - bash -c "cat packed-refs | grep -v 'refs/merge-requests' > packed-refs-new; echo 'Removed merge-requests refs.'"
- mv packed-refs-new packed-refs - mv packed-refs-new packed-refs
# github push
- bash -c "git push --force --mirror github 2>&1 | grep -v duniter-gitlab; echo $?" - bash -c "git push --force --mirror github 2>&1 | grep -v duniter-gitlab; echo $?"
.pyenv: .pyenv:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment