-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (64 loc) · 2.48 KB
/
v2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: "采集火烧云预测&通知v2"
# run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on:
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
# schedule:
# - cron: '5 10,14,21 * * *' #At minute 5 past hour 10, 14, and 21.
# - cron: '30 2,6,13 * * *' #github action的时区不是北京时间,所有都减去8
permissions: write-all # {{secrets.GITHUB_TOKEN}}的权限
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 打印当前时间
run: date
- name: 检查分支
uses: actions/checkout@v3
- name: 设置时区
uses: szenius/[email protected]
with:
timezoneLinux: "Asia/Shanghai"
timezoneMacos: "Asia/Shanghai"
timezoneWindows: "Shanghai Standard Time"
- name: 打印当前时间
run: date
- name: 进入目录
run: cd v2
- name: 安装python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: 设置环境变量
env:
OPENAI_API_BASE: ${{ vars.OPENAI_API_BASE }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
echo "OPENAI_API_BASE=$OPENAI_API_BASE" >> $GITHUB_ENV
echo "OPENAI_API_KEY=$OPENAI_API_KEY" >> $GITHUB_ENV
- name: 打印当前目录
run: pwd
- name: 安装依赖
run: pip install -r requirements.txt
- name: 采集&通知
env:
BAIDU_API_KEY: ${{ secrets.BAIDU_API_KEY }} # 百度api key
BAIDU_SECRET_KEY: ${{ secrets.BAIDU_SECRET_KEY }} # 百度secret key
WX_TOKEN: ${{ secrets.WX_TOKEN }} # 微信通知token
# WEATHER_API_KEY: ${{ secrets.WEATHER_API_KEY }} # 天气api key
run: python main.py "$BAIDU_API_KEY" "$BAIDU_SECRET_KEY" "$WX_TOKEN"
- name: 判断是否有修改
id: verify_diff
run: |
git diff --quiet records/*.json || echo "changed=true" >> $GITHUB_OUTPUT
- name: Commit files
if: steps.verify_diff.outputs.changed == 'true'
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add records/*.json
git commit -m "预测记录更新"
- name: 推送记录到github
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}