Workflow file for this run
This file contains hidden or 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
| name: Release Telegram Notification | |
| on: | |
| release: | |
| types: [published, edited] | |
| workflow_dispatch: | |
| jobs: | |
| telegram-notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send Telegram Message | |
| uses: appleboy/telegram-action@master | |
| with: | |
| to: "@ghostproxifier" | |
| token: ${{ secrets.TELEGRAM_TOKEN }} | |
| format: html | |
| message: | | |
| 🚀 <b>Ghost Proxifier ${{ github.event.release.tag_name || 'v1.1.3' }} 发布!</b> | |
| 📋 <b>更新说明:</b> | |
| ${{ github.event.release.body }} | |
| 📥 <b>官方下载:</b> | |
| <a href="${{ github.event.release.html_url || 'https://github.com/liliBestCoder/ghost-proxifier-pro/releases/tag/1.1.3' }}">👉 查看 Release 页面与下载 MSI 安装包</a> |