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 e4f914b commit f33f760Copy full SHA for f33f760
.github/workflows/publish.yml
@@ -15,10 +15,15 @@ jobs:
15
node-version: "16.x"
16
registry-url: "https://registry.npmjs.org"
17
18
- - name: install npm packages
+ - name: Install npm packages
19
run: npm install --legacy-peer-deps
20
21
- - name: publish npm package
+ - name: Add Automated git user
22
+ run: |-
23
+ git config user.name "Automated"
24
+ git config user.email "actions@users.noreply.github.com"
25
+
26
+ - name: Publish npm package
27
run: npm publish
28
env:
29
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments