From 086b8b75d78e2da3f0463aa278356f41677b88fa Mon Sep 17 00:00:00 2001 From: Casey Buto Date: Wed, 20 Sep 2023 15:37:06 -0400 Subject: [PATCH] ci: drop git config --- .github/workflows/create-dev-tag.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/create-dev-tag.yml b/.github/workflows/create-dev-tag.yml index 218b77634..d75b02fef 100644 --- a/.github/workflows/create-dev-tag.yml +++ b/.github/workflows/create-dev-tag.yml @@ -34,9 +34,6 @@ jobs: ref: ${{ matrix.branch }} depth: 0 - - name: Configure git for private repo access - run: git config --global url.https://$GH_ACCESS_TOKEN@github.com/.insteadOf https://github.com/ - - name: Setup asdf uses: asdf-vm/actions/setup@v2 @@ -51,10 +48,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.MESOSPHERECI_USER_TOKEN }} - name: Create tag - run: | - git config --global user.email "ci-mergebot@d2iq.com" - git config --global user.name "ci-mergebot" - git tag -m "${{ env.TAG }}" ${{ env.TAG }} + run: git tag -m "${{ env.TAG }}" ${{ env.TAG }} - name: Push tag run: git push --force --tags origin ${{ env.TAG }}