-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(README): 更新 README-zh.md 和 README.md
- Loading branch information
Showing
3 changed files
with
65 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,6 +63,16 @@ jobs: | |
run: | | ||
pnpm test || (echo "Test failed" && exit 1) | ||
- name: Commit and Push | ||
run: | | ||
git add README-zh.md | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git config advice.ignoredHook false | ||
git commit -m "docs(README): update README-zh.md" | ||
BRANCH=$(echo "${GITHUB_REF}" | sed 's@refs/heads/@@') | ||
git push origin HEAD:$BRANCH || echo "Push to repository failed" | ||
- name: Upload build artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters