We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14770c3 commit 091f76cCopy full SHA for 091f76c
.github/workflows/worker_main.yaml
@@ -29,13 +29,11 @@ jobs:
29
pip install aiohttp-retry
30
pip install python-dotenv
31
32
- - name: Change to the script directory
33
- run: cd ./worker
34
-
35
- - name: Execute data scrapping
+ - name: Execute Python script in the worker directory
36
env:
37
pythonLocation: /opt/hostedtoolcache/Python/3.10.13/x64
38
DB_URL: ${{ secrets.DB_URL }}
39
PERIOD_MIN: ${{ secrets.PERIOD_MIN }}
40
41
- run: python main.py
+ run: |
+ cd ./worker
+ python main.py
0 commit comments