Closed fadeev closed 1 month ago
The latest updates on your projects. Learn more about Vercel for Git βοΈ
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
docs-v2 | β Ready (Inspect) | Visit Preview | π¬ Add feedback | Sep 30, 2024 7:59am |
.github/workflows/update-from-toolkit.yaml
31-31: workflow command "set-output" was deprecated. use `echo "{name}={value}" >> $GITHUB_OUTPUT` instead: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions (deprecated-commands)
.github/workflows/update-from-toolkit.yaml (3)
`24-26`: **Directory structure modification appears correct and aligned with PR objectives.** The changes to update the toolkit documentation path from `public/packages/toolkit` to `src/pages/developers/frontend/toolkit` have been implemented correctly. The commands for directory creation, existing file removal, and new file copying are accurate and maintain the intended functionality. --- `32-32`: **Git add command correctly updated to reflect new directory structure.** The `git add` command has been appropriately modified to track changes in the new `src/pages/developers/frontend/toolkit` directory, maintaining consistency with the earlier directory structure modifications. --- `32-32`: _:warning: Potential issue_ **Update deprecated `set-output` command to new syntax.** The `set-output` workflow command has been deprecated. To ensure the longevity and maintainability of this workflow, please update the command to use the new syntax. Replace the deprecated command with the following: ```diff - git diff --cached --exit-code || echo "::set-output name=changed::true" + git diff --cached --exit-code || echo "changed=true" >> $GITHUB_OUTPUT ``` This change aligns with the current GitHub Actions best practices and prevents potential future compatibility issues. > Likely invalid or redundant comment.
src/pages/developers/frontend
, because toolkit docs are already in markdown: https://github.com/zeta-chain/toolkit/tree/d6148b2ee7296b83058f234b7f56cd7344ea70f5/docsSummary by CodeRabbit
Bug Fixes
New Features
Documentation
ZetaChainClient
,deposit
,withdraw
, and others, which may affect user reference.Chores