mirror of
https://github.com/cluntop/tvbox.git
synced 2026-01-11 18:08:34 +01:00
Update Up
This commit is contained in:
parent
e835fe8b48
commit
fc07284ba7
4 changed files with 4 additions and 4 deletions
2
.github/workflows/clear.yml
vendored
2
.github/workflows/clear.yml
vendored
|
|
@ -50,7 +50,7 @@ jobs:
|
|||
run: |
|
||||
git checkout --orphan latest_branch
|
||||
git add -A
|
||||
git commit -m "purge history and cleanup garbage"
|
||||
git commit -m "purge history"
|
||||
git branch -D main
|
||||
git branch -m main
|
||||
|
||||
|
|
|
|||
2
.github/workflows/tv_run.yml
vendored
2
.github/workflows/tv_run.yml
vendored
|
|
@ -61,7 +61,7 @@ jobs:
|
|||
if [ -n "$(git status --porcelain)" ]; then
|
||||
echo "Changes detected, committing..."
|
||||
git add .
|
||||
git commit -m "Update m3u $(date '+%m-%d %H:%M')"
|
||||
git commit -m "Update m3u"
|
||||
|
||||
git pull --rebase origin main
|
||||
git push origin main
|
||||
|
|
|
|||
2
.github/workflows/zip.yml
vendored
2
.github/workflows/zip.yml
vendored
|
|
@ -82,7 +82,7 @@ jobs:
|
|||
echo "No changes to commit."
|
||||
exit 0
|
||||
else
|
||||
COMMIT_MSG="Update zip $(date '+%m-%d %H:%M')"
|
||||
COMMIT_MSG="Update zip"
|
||||
git commit -m "$COMMIT_MSG"
|
||||
|
||||
git push origin HEAD:main
|
||||
|
|
|
|||
2
git.sh
2
git.sh
|
|
@ -178,7 +178,7 @@ submit() {
|
|||
git add .
|
||||
|
||||
info_msg "3. 提交推送..."
|
||||
msg="Update Up $(date '+%m-%d %H:%M')"
|
||||
msg="Update Up"
|
||||
git commit -m "$msg"
|
||||
|
||||
if git push origin "$curr"; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue