Forwarded from Sinspired Channel
https://github.com/sinspired/multi-release-notify

一个为 GitHub 自动 CI/release 流程添加通知的 action 工具,可在 github 仓库发布新版本时自动采用精美的模板向 Email,telegram,钉钉,ntfy、bark等渠道发送版本更新通知。

name: Release Notification

on:
  release:
    types: [published]

jobs:
  notify:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v6
        with:
          fetch-depth: 0

      - uses: sinspired/multi-release-notify@v1
        with:
          email_url:     ${{ secrets.EMAIL_APPRISE_URL }}
          telegram_url:  ${{ secrets.TELEGRAM_APPRISE_URL }}
GitHub - sinspired/multi-release-notify: A GitHub Action to send notifications Slack, Telegram, Email And more channels using Apprise.…