PagerMaid_Plugins_Pyro/.github/workflows/python.yml

36 lines
793 B
YAML
Raw Normal View History

2022-06-08 08:58:40 +00:00
name: Github commit to telegram
on:
push:
branches:
- v2
jobs:
build:
runs-on: ubuntu-latest
steps:
# 此步骤使用 GitHub 的 https://github.com/actions/checkout
- name: checkout actions
uses: actions/checkout@v3
# 设置python环境
# 此步骤使用 GitHub 的 https://github.com/actions/setup-python
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: 3.9
# 安装依赖
- name: Install dependencies
run: |
mkdir tmp && cd tmp
python -m pip install --upgrade pip
pip install httpx
# 发送通知
- name: Send notice
run: |
cd tmp
cp ../telegram_update.py ./
python telegram_update.py ${{ secrets.TG_BOT_TOKEN }}