mirror of
https://github.com/zsbai/wechat-versions.git
synced 2026-05-13 07:16:43 +00:00
19 lines
387 B
YAML
19 lines
387 B
YAML
name: Wechat Release Notify
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
|
|
jobs:
|
|
notify_to_tg:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Check new version and push
|
|
env:
|
|
GHTOKEN: ${{ secrets.GHTOKEN }}
|
|
BOTTOKEN: ${{ secrets.BOTTOKEN }}
|
|
CHATIDS: ${{ secrets.CHATIDS }}
|
|
run: bash -x ./scripts/notify.sh
|