We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e70e62 commit 7aca067Copy full SHA for 7aca067
1 file changed
.github/workflows/publish.yml
@@ -27,6 +27,12 @@ jobs:
27
registry-url: 'https://registry.npmjs.org'
28
- name: Install dependencies
29
run: npm ci
30
+ - name: Set up git user
31
+ run: |
32
+ git config user.name "${GITHUB_ACTOR}"
33
+ git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
34
+ env:
35
+ GITHUB_ACTOR: ${{ github.actor }}
36
- name: Publish to npm
37
run: npm run release -- --ci --verbose
38
env:
0 commit comments