generated from x-dr/telegraph-Image
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80c14cf
commit 100257d
Showing
1 changed file
with
8 additions
and
6 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 |
---|---|---|
|
@@ -14,12 +14,6 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
|
||
# 此处没用(只是设置账号信息罢了不设置也行) | ||
- name: Set up Git user | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "yunshuangqwq" | ||
# 添加上游信息 | ||
- name: Add upstream repository | ||
run: git remote add upstream https://github.com/x-dr/telegraph-Image.git | ||
|
@@ -38,8 +32,16 @@ jobs: | |
run: | | ||
git clean -fdx -e .github | ||
# 设置账号信息 | ||
- name: Set up Git user | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "yunshuangqwq" | ||
# 给README.md一个更新让cf自动部署 | ||
- name: Commit and push changes | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
git add README.md README.md | ||
git commit -m "Update ck" || echo "No changes to commit" | ||
|