From 4197c26a3619318a0e2e7cde1b314678d121efd9 Mon Sep 17 00:00:00 2001
From: Patrick Marsceill <pmarsceill@users.noreply.github.com>
Date: Fri, 24 Apr 2020 11:44:00 -0400
Subject: [PATCH] Update ci.yml

---
 .github/workflows/ci.yml | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 655601fd..926b7f54 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -55,8 +55,8 @@ jobs:
         echo "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$GITHUB_REPOSITORY.git"
         git config --global user.email $GITHUB_ACTOR@users.noreply.github.com
         git config --global user.name $GITHUB_ACTOR
-        # echo "branch is ${{ steps.extract_branch.outputs.branch }}"
-        # git checkout ${{ steps.extract_branch.outputs.branch }}
+        echo "extracted branch is ${{ steps.extract_branch.outputs.branch }}"
+        git checkout -b ${{ steps.extract_branch.outputs.branch }}
         git status
         git add .
     - name: Are there any updates?
@@ -68,6 +68,5 @@ jobs:
       run: |
         echo ${{ steps.is_dirty.outputs.status }}
         git commit -m "🎨 Prettier"
-        git push --force -U origin HEAD
-        # git push --force --set-upstream "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" ${{ steps.extract_branch.outputs.branch }}
+        git push --force --set-upstream "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" ${{ steps.extract_branch.outputs.branch }}
     - run: npm test
-- 
GitLab