-
Notifications
You must be signed in to change notification settings - Fork 3
57 lines (46 loc) · 1.46 KB
/
actions.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
name: Run Scripts
on:
schedule:
# Run newday.py every day.
- cron: '50 15 * * *'
# Run update_BoW.py every day
- cron: '30 16 * * *'
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install Python packages
run: |
python -m pip install --upgrade pip
python -m pip install torch torchvision torchaudio
- name: Install NLTK dependencies
run: |
python -m nltk.downloader stopwords punkt
- name: Install other requirements
run: pip install -r requirements.txt
- name: Execute newday.py
run: python project/newday.py
- name: Execute update_BoW.py (every day)
if: ${{github.event.cron == '30 16 * * *' }}
run: python update_BoW.py
- name: Commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "akanksha1131"
git add -A
git diff-index --quiet HEAD || (git commit -a -m "Updated logs" --allow-empty)
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main