diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 53f58f1..2bf2d7f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -192,7 +192,12 @@ jobs: # PUSH TAGS IF IT IS A RELEASE - name: Push tag if: inputs.dev == false + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | + git config user.name github-actions + git config user.email github-actions@github.com + git config --global url."https://github-actions:${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/" git pull git tag ${TAG_NAME} git push --tags