Skip to content

Commit 0007528

Browse files
authored
fix ci (#95)
1 parent 339e08a commit 0007528

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ runs:
66
- name: Setup node
77
uses: actions/setup-node@v3
88
with:
9-
node-version: "16.18.x"
9+
node-version: "18.18.x"
1010
cache: npm
1111
- name: Install packages
1212
run: npm install

.github/workflows/docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ jobs:
3030
cp -r markups/contracts docs/docs/reference
3131
- name: Push Docs
3232
run: |
33+
git config user.name "Docs Syncer"
34+
git config user.email "contact@distributedlab.com"
3335
git fetch --unshallow
3436
latest_tag=$(git describe --tags --abbrev=0)
3537
cd docs
36-
git config user.name "Docs Syncer"
3738
git add -f .
3839
if ! git diff-index --quiet HEAD; then
3940
git commit -m "CI: \`$latest_tag\`"

0 commit comments

Comments
 (0)