From bf64105d04523b3c33867bfbb1d98bdd0aba3083 Mon Sep 17 00:00:00 2001 From: Afonso Jorge Ramos Date: Tue, 12 Dec 2023 11:00:07 +0000 Subject: [PATCH] fix: `on-tag` workflow --- .github/workflows/on-tag.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/on-tag.yml b/.github/workflows/on-tag.yml index 75a5d02b8..7b5696d7a 100644 --- a/.github/workflows/on-tag.yml +++ b/.github/workflows/on-tag.yml @@ -28,13 +28,12 @@ jobs: - uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' - cache: 'pnpm' - id: version run: echo "version=$(echo ${{ github.ref }} | sed 's/refs\/tags\/v//')" >> $GITHUB_OUTPUT - name: setup git config run: | - git config user.name "Gitify Version Bot" - git config user.email "<>" + git config user.name github-actions + git config user.email github-actions@github.com - run: git checkout -b "bump/${{ steps.version.outputs.version }}" - run: pnpm version ${{ steps.version.outputs.version }} - run: git push origin "bump/${{ steps.version.outputs.version }}"