We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aca9cf1 commit 78c8d69Copy full SHA for 78c8d69
1 file changed
.github/workflows/release-to-npm.yml
@@ -31,15 +31,14 @@ jobs:
31
with:
32
node-version: 20
33
cache: "yarn"
34
- registry-url: "https://registry.npmjs.org"
35
36
- name: Install dependencies
37
run: yarn install --immutable
38
39
- - name: Configure Git
+ - name: git config
40
run: |
41
- git config user.name "GitHub Actions"
42
- git config user.email "actions@github.com"
+ git config user.name "${GITHUB_ACTOR}"
+ git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
43
44
- name: Build package
45
run: yarn prepare
0 commit comments