🚀 Site Build Notify #65
This file contains 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: 🚀 Site Build Notify | |
on: | |
page_build | |
jobs: | |
site-build-notify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Old Site Build Success Notify | |
uses: zcong1993/actions-ding@master | |
with: | |
dingToken: ${{ secrets.DING_TALK_ACCESS_TOKEN }} | |
ignoreError: true | |
body: | | |
{ | |
"msgtype": "link", | |
"link": { | |
"title": "✅ 旧官网(https://s2.antv.vision) 部署成功", | |
"text": "点击访问 https://s2.antv.vision/", | |
"messageUrl": "https://s2.antv.vision/", | |
"picUrl": "https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*Eel8Rp5jlAkAAAAAAAAAAAAADmJ7AQ/original" | |
} | |
} | |
- name: New Site Build Notify | |
uses: zcong1993/actions-ding@master | |
with: | |
dingToken: ${{ secrets.DING_TALK_ACCESS_TOKEN }} | |
ignoreError: true | |
body: | | |
{ | |
"msgtype": "link", | |
"link": { | |
"title": "📢 请发布值班手动部署新官网 (https://s2.antv.antgroup.com) 📢", | |
"text": "点击查看部署教程", | |
"messageUrl": "https://yuque.antfin-inc.com/spreadsheet/garqs6/hednl5#RfuD9", | |
"picUrl": "https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*RXmkQrNYxqoAAAAAAAAAAAAADmJ7AQ/original" | |
} | |
} |