Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/publish-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,20 @@ jobs:
}
}

- name: Notify secondary DingTalk group on success
uses: zcong1993/actions-ding@master
with:
dingToken: ${{ secrets.DING_TALK_TOKEN_2 }}
secret: ${{ secrets.DING_TALK_SECRET_2 }}
body: |
{
"msgtype": "markdown",
"markdown": {
"title": "fc-sdk-android 发布通知",
"text": "### ✅ fc-sdk-android 发布成功\n\n---\n\n 🔖 版本: ${{ steps.version.outputs.version }}\n\n 📦 类型: ${{ steps.version.outputs.type }}\n\n 👨‍💻 发布者: ${{ github.actor }}\n\n 🚀 [查看详情](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})"
}
}

notify-failure:
needs: publish
runs-on: ubuntu-latest
Expand Down
Loading