Skip to content

Commit

Permalink
Clean up, don't reinit.
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwcarlson committed Oct 27, 2023
1 parent 3867f5e commit 5bc54e1
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,16 @@ jobs:
echo "::notice::Verifying local repo."
ls -a
cd $TEST_PROJECT_LOCALDIR
git config --global user.email "$TEST_USER_EMAIL"
git config --global user.name "$TEST_USER_NAME"
git init
git add .
git commit -m "Init commit."
git branch -M $TEST_PROJECT_DEFAULT_BRANCH
git branch
# git init
# git add .
# git commit -m "Init commit."
# git branch -M $TEST_PROJECT_DEFAULT_BRANCH
# git branch
# git checkout ${{ github.event.pull_request.head.sha }}
# echo "::notice::Switching to branch ${{ env.TEST_PROJECT_DEFAULT_BRANCH }}"
# git switch -C $TEST_PROJECT_DEFAULT_BRANCH
Expand Down

0 comments on commit 5bc54e1

Please sign in to comment.