We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a6ecb30 + 1d3fb8d commit 58b7be7Copy full SHA for 58b7be7
.github/workflows/default.yml
@@ -52,9 +52,14 @@ jobs:
52
FULL_VERSION=${{ github.event.release.tag_name }}
53
SHORT_VERSION=${FULL_VERSION:1}
54
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"
60
61
- name: Update release version
- run: npm version ${{ steps.release.outputs.shortVersion }}
62
+ run: npm version --no-git-tag-version ${{ steps.release.outputs.shortVersion }}
63
64
- name: Install dependencies
65
run: npm install
0 commit comments