Weather data collector #550
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Weather data collector | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 17 * * *' # 5:30pm(GMT) = 11:00pm(IST) | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v2 # checkout the repository content to github runner | |
- name: setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' # install the python version needed | |
- name: install python packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
- name: execute py script # run main.py | |
run: python Collector.py | |
- name: commit and push changes | |
run: | | |
git config user.email "hemsainath15@gmail.com" | |
git config user.name "GitHub Action" | |
git add -A | |
git commit -m "Dataset Updated" | |
git push |