forked from like977/sport
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (43 loc) · 1.4 KB
/
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
39
40
41
42
43
44
45
46
47
48
name: 刷步数
on:
#push:
# branches: [ main ]
#pull_request:
# branches: [ main ]
schedule:
- cron: '9 0,2,5,7,9,11,13 * * *'
watch:
types: started
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
steps:
- name: Checkout codes
uses: actions/checkout@v2
- 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@v2
with:
python-version: 3.8
- name: 开始
run: |
pip3 install requests
user='${{ secrets.USER }}'
passwd='${{ secrets.PWD }}'
skey='${{ secrets.SKEY }}'
sckey='${{ secrets.SCKEY }}'
position='${{ secrets.POSITION }}'
corpid='${{ secrets.CORPID }}'
corpsecret='${{ secrets.CORPSECRET }}'
agentid='${{ secrets.AGENTID }}'
touser='${{ secrets.TOUSER }}'
toparty='${{ secrets.TOPARTY }}'
totag='${{ secrets.TOTAG }}'
open_get_weather='${{ secrets.OPEN_GET_WEATHER }}'
area='${{ secrets.AREA }}'
python3 main.py ${user} ${passwd} ${skey} ${sckey} ${position} ${corpid} ${corpsecret} ${agentid} ${touser} ${toparty} ${totag} ${open_get_weather} ${area}