tg
Some checks failed
CI / build (20.15.1) (push) Has been cancelled

This commit is contained in:
shanshanzhong 2025-09-28 19:48:57 -07:00
parent 96aa507f77
commit ccfd5be59f

View File

@ -724,10 +724,10 @@ jobs:
# 步骤5: TG通知 (成功) # 步骤5: TG通知 (成功)
- name: 📱 发送成功通知到Telegram - name: 📱 发送成功通知到Telegram
if: success() if: success()
uses: chapvic/telegram-notify@master uses: appleboy/telegram-action@master
with: with:
token: ${{ env.TELEGRAM_BOT_TOKEN }} token: ${{ env.TELEGRAM_BOT_TOKEN }}
chat: ${{ env.TELEGRAM_CHAT_ID }} to: ${{ env.TELEGRAM_CHAT_ID }}
message: | message: |
✅ **部署成功!** ✅ **部署成功!**
@ -746,10 +746,10 @@ jobs:
# 步骤5: TG通知 (失败) # 步骤5: TG通知 (失败)
- name: 📱 发送失败通知到Telegram - name: 📱 发送失败通知到Telegram
if: failure() if: failure()
uses: chapvic/telegram-notify@master uses: appleboy/telegram-action@master
with: with:
token: ${{ env.TELEGRAM_BOT_TOKEN }} token: ${{ env.TELEGRAM_BOT_TOKEN }}
chat: ${{ env.TELEGRAM_CHAT_ID }} to: ${{ env.TELEGRAM_CHAT_ID }}
message: | message: |
❌ **部署失败!** ❌ **部署失败!**