PagerMaid_Plugins/.github/workflows/python.yml

36 lines
800 B
YAML
Raw Normal View History

name: Github commit to telegram
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
# 此步骤使用 GitHub 的 https://github.com/actions/checkout
- name: checkout actions
uses: actions/checkout@v1
# 设置python环境
# 此步骤使用 GitHub 的 https://github.com/actions/setup-python
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
# 安装依赖
- name: Install dependencies
run: |
2021-01-23 00:13:26 +00:00
mkdir tmp && cd tmp
python -m pip install --upgrade pip
pip install requests
# 发送通知
- name: Send notice
2021-01-23 00:21:00 +00:00
run: |
2021-01-23 00:36:42 +00:00
cd tmp
cp ../telegram_update.py ./
python telegram_update.py ${{ secrets.TG_BOT_TOKEN }}