Skip to content

Commit 2001070

Browse files
committed
ci: remove git config action
1 parent c09a30b commit 2001070

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
run: yarn test
2222
- name: Lint
2323
run: yarn lint
24-
- name: Git config
25-
uses: BatchLabs/action.git-config@v1
2624
- run: npm publish --access public
2725
env:
2826
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

scripts/deploy-doc.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
#!/bin/sh
22
set -e
33

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+
48
# Copy generated documentation
59
cp -r docs/. ../temp-doc
610

0 commit comments

Comments
 (0)