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 339e08a commit 0007528Copy full SHA for 0007528
.github/actions/setup/action.yml
@@ -6,7 +6,7 @@ runs:
6
- name: Setup node
7
uses: actions/setup-node@v3
8
with:
9
- node-version: "16.18.x"
+ node-version: "18.18.x"
10
cache: npm
11
- name: Install packages
12
run: npm install
.github/workflows/docs.yml
@@ -30,10 +30,11 @@ jobs:
30
cp -r markups/contracts docs/docs/reference
31
- name: Push Docs
32
run: |
33
+ git config user.name "Docs Syncer"
34
+ git config user.email "contact@distributedlab.com"
35
git fetch --unshallow
36
latest_tag=$(git describe --tags --abbrev=0)
37
cd docs
- git config user.name "Docs Syncer"
38
git add -f .
39
if ! git diff-index --quiet HEAD; then
40
git commit -m "CI: \`$latest_tag\`"
0 commit comments