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 b545c3d commit b49faa6Copy full SHA for b49faa6
.github/workflows/npm-publish.yml
@@ -9,7 +9,7 @@ jobs:
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@v4
12
- - uses: actions/setup-node@v3
+ - uses: actions/setup-node@v4
13
with:
14
node-version: 20
15
- name: Install dependencies
@@ -26,12 +26,16 @@ jobs:
26
27
28
29
30
31
32
registry-url: https://registry.npmjs.org/
33
34
run: npm ci
35
+ - name: Configure Git user
36
+ run: |
37
+ git config user.name "GitHub Action"
38
+ git config user.email "action@github.com"
39
- name: Set npm version
40
run: |
41
TAG_NAME=${GITHUB_REF#refs/tags/}
0 commit comments