Skip to content

Commit 58b7be7

Browse files
committed
2 parents a6ecb30 + 1d3fb8d commit 58b7be7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/default.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,14 @@ jobs:
5252
FULL_VERSION=${{ github.event.release.tag_name }}
5353
SHORT_VERSION=${FULL_VERSION:1}
5454
echo shortVersion=${SHORT_VERSION} >> $GITHUB_OUTPUT
55+
56+
- name: Configure Git user
57+
run: |
58+
git config user.email "[email protected]"
59+
git config user.name "GitHub Actions"
5560
5661
- name: Update release version
57-
run: npm version ${{ steps.release.outputs.shortVersion }}
62+
run: npm version --no-git-tag-version ${{ steps.release.outputs.shortVersion }}
5863

5964
- name: Install dependencies
6065
run: npm install

0 commit comments

Comments
 (0)