Skip to content

Merge pull request #457 from mbeps/development #62

Merge pull request #457 from mbeps/development

Merge pull request #457 from mbeps/development #62

Workflow file for this run

name: Mirror to GitLab
on:
push:
branches:
- main
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: Verify GitLab Repository
env:
GITLAB_ACCESS_TOKEN: ${{ secrets.GITLAB_ACCESS_TOKEN }}
GITLAB_USERNAME: ${{ secrets.GITLAB_USERNAME }}
GITLAB_REPOSITORY: ${{ secrets.GITLAB_REPOSITORY }}
run: |
git config --global user.name 'Maruf Bepary'
git config --global user.email '[email protected]'
git ls-remote https://oauth2:${GITLAB_ACCESS_TOKEN}@gitlab.com/${GITLAB_USERNAME}/${GITLAB_REPOSITORY}.git HEAD
if [ $? -ne 0 ]; then
echo "Failed to connect to GitLab repository. Check if repository exists and credentials/token are correct."
exit 1
fi
- name: Mirror Repository to GitLab
env:
GITLAB_ACCESS_TOKEN: ${{ secrets.GITLAB_ACCESS_TOKEN }}
GITLAB_USERNAME: ${{ secrets.GITLAB_USERNAME }}
GITLAB_REPOSITORY: ${{ secrets.GITLAB_REPOSITORY }}
run: |
git remote add gitlab https://oauth2:${GITLAB_ACCESS_TOKEN}@gitlab.com/${GITLAB_USERNAME}/${GITLAB_REPOSITORY}.git || true
git push --force gitlab main