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 6da10d3 commit 6de53a4Copy full SHA for 6de53a4
.github/workflows/release.yml
@@ -15,6 +15,10 @@ jobs:
15
with:
16
node-version: 16
17
registry-url: https://registry.npmjs.org/
18
+ - name: Configure git
19
+ run: |
20
+ git config user.name "github-actions[bot]"
21
+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
22
- run: npm ci
23
- run: npm run test:coverage
24
- run: NODE_ENV=production npm run build
@@ -27,8 +31,6 @@ jobs:
27
31
- run: npm run version:bump
28
32
- name: Push to GitHub
29
33
run: |
30
- git config user.name "github-actions[bot]"
- git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
34
git push -f
35
git push --tags
36
- name: Publish to NPM
0 commit comments