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.
1 parent 14f1896 commit 4072e40Copy full SHA for 4072e40
.github/workflows/default.yml
@@ -52,6 +52,12 @@ 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
+ if: ${{ github.event_name == 'release' }}
58
+ run: |
59
+ git config user.email "[email protected]"
60
+ git config user.name "GitHub Actions"
61
62
- name: Update release version
63
run: npm version ${{ steps.release.outputs.shortVersion }}
0 commit comments