Skip to content

Commit

Permalink
fix ci (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
dovgopoly authored Mar 15, 2024
1 parent 339e08a commit 0007528
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "16.18.x"
node-version: "18.18.x"
cache: npm
- name: Install packages
run: npm install
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ jobs:
cp -r markups/contracts docs/docs/reference
- name: Push Docs
run: |
git config user.name "Docs Syncer"
git config user.email "[email protected]"
git fetch --unshallow
latest_tag=$(git describe --tags --abbrev=0)
cd docs
git config user.name "Docs Syncer"
git add -f .
if ! git diff-index --quiet HEAD; then
git commit -m "CI: \`$latest_tag\`"
Expand Down

0 comments on commit 0007528

Please sign in to comment.