From b00bed0bae188338813a79a99cf7fbb7019a2094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Mon, 5 Jul 2021 10:20:06 +0200 Subject: [PATCH] fix: remote sync --- .github/workflows/sync.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml index f00217cf65f..aa5c8aee8c4 100644 --- a/.github/workflows/sync.yml +++ b/.github/workflows/sync.yml @@ -8,10 +8,14 @@ jobs: sync: runs-on: ubuntu-latest steps: + - name: debug + run: env | sort - uses: actions/checkout@v2 - name: Add remote run: git remote add overhangio https://${{ secrets.GIT_USERNAME }}:${{ secrets.GIT_PASSWORD }}@git.overhang.io/core/tutor.git - - name: Rebase - run: git pull --rebase overhangio master + - name: debug check branch + run: git branch + - name: debug check log + run: git log -10 - name: Push - run: git push overhangio master + run: git push overhangio master:master