forked from matocool/mimotion-for-email
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (34 loc) · 934 Bytes
/
run.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: 刷步数
on:
#push:
# branches: [ main ]
#pull_request:
# branches: [ main ]
schedule:
- cron: '25 9 * * *'
watch:
types: started
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout codes
uses: actions/checkout@v3
- name: Update system and install zsh
run: |
sudo -E apt-get -qq update
sudo -E apt-get install zsh -y
- name: 初始化Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: 开始
run: |
pip3 install requests
user='${{ secrets.USER }}'
passwd='${{ secrets.PWD }}'
open_get_weather='${{ secrets.OPEN_GET_WEATHER }}'
area='${{ secrets.AREA }}'
sckey='${{ secrets.SCKEY }}'
python3 main.py ${user} ${passwd} ${open_get_weather} ${area} ${sckey}