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 c09a30b commit 2001070Copy full SHA for 2001070
.github/workflows/release.yml
@@ -21,8 +21,6 @@ jobs:
21
run: yarn test
22
- name: Lint
23
run: yarn lint
24
- - name: Git config
25
- uses: BatchLabs/action.git-config@v1
26
- run: npm publish --access public
27
env:
28
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
scripts/deploy-doc.sh
@@ -1,6 +1,10 @@
1
#!/bin/sh
2
set -e
3
4
+# Git config
5
+git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
6
+git config --global user.name "github-actions"
7
+
8
# Copy generated documentation
9
cp -r docs/. ../temp-doc
10
0 commit comments