Skip to content

Commit

Permalink
ci: drop git config
Browse files Browse the repository at this point in the history
  • Loading branch information
cbuto committed Sep 20, 2023
1 parent 790ed92 commit 086b8b7
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/create-dev-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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 }}
Expand Down

0 comments on commit 086b8b7

Please sign in to comment.