File tree Expand file tree Collapse file tree 2 files changed +44
-1
lines changed Expand file tree Collapse file tree 2 files changed +44
-1
lines changed Original file line number Diff line number Diff line change 34
34
pythonLocation : /opt/hostedtoolcache/Python/3.10.13/x64
35
35
DB_URL : ${{ secrets.DB_URL }}
36
36
PERIOD_MIN : ${{ secrets.PERIOD_MIN }}
37
+ WORKER_ENV : ${{ secrets.WORKER_ENV }}
37
38
run : |
38
39
cd ./worker
39
40
mkdir logs
40
41
python main.py
41
- cat ./logs/logfile .log
42
+ cat ./logs/velog-dashboard-worker .log
42
43
Original file line number Diff line number Diff line change
1
+ name : run token_refresh.py
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ schedule :
8
+ - cron : " */20 * * * *" # 20분 마다
9
+
10
+ jobs :
11
+ build :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Checkout repo content
15
+ uses : actions/checkout@v2
16
+
17
+ - name : Setup python
18
+ uses : actions/setup-python@v4
19
+ with :
20
+ python-version : " 3.10"
21
+
22
+ - name : Install python packages
23
+ run : |
24
+ python -m pip install --upgrade pip
25
+ pip install aiohttp
26
+ pip install motor
27
+ pip install pydantic
28
+ pip install pytz
29
+ pip install aiohttp-retry
30
+ pip install python-dotenv
31
+
32
+ - name : Execute Python script in the worker directory
33
+ env :
34
+ pythonLocation : /opt/hostedtoolcache/Python/3.10.13/x64
35
+ DB_URL : ${{ secrets.DB_URL }}
36
+ PERIOD_MIN : ${{ secrets.PERIOD_MIN }}
37
+ WORKER_ENV : ${{ secrets.WORKER_ENV }}
38
+ run : |
39
+ cd ./worker
40
+ mkdir logs
41
+ python token_refresh.py
42
+ cat ./logs/velog-dashboard-token-worker.log
You can’t perform that action at this time.
0 commit comments