-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (28 loc) · 927 Bytes
/
Action.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
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