Skip to content

Commit 80d0d68

Browse files
committed
fix(ci): update requirements paths in workflows
1 parent 6eff1ac commit 80d0d68

File tree

10 files changed

+8
-8
lines changed

10 files changed

+8
-8
lines changed

.github/workflows/gh-pages-back.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Install Dependencies
3838
run: |
3939
python -m pip install --upgrade pip
40-
pip install -r requirements.txt
40+
pip install -r requirements/requirements.txt
4141
4242
- name: Update Notes Links
4343
id: update_notes_links

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Install Dependencies
4040
run: |
4141
python -m pip install --upgrade pip
42-
pip install -r requirements.txt
42+
pip install -r requirements/requirements.txt
4343
4444
- name: Update Language Files
4545
id: updated_lang_files

.github/workflows/habit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Install dependencies
5252
run: |
5353
python -m pip install --upgrade pip
54-
pip install -r requirements.txt
54+
pip install -r requirements/requirements.txt
5555
5656
- name: Run habit reminder script (Scheduled)
5757
run: python scripts/bot/habit_bot.py --job send_reminder

.github/workflows/news.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Install dependencies
3939
run: |
4040
python -m pip install --upgrade pip
41-
pip install -r requirements.simple.txt
41+
pip install -r requirements/requirements.simple.txt
4242
4343
- name: Run news bot script
4444
run: python scripts/nytimes/news_bot.py

.github/workflows/nytimes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install Dependencies
4141
run: |
4242
python -m pip install --upgrade pip
43-
pip install -r requirements.simple.txt
43+
pip install -r requirements/requirements.simple.txt
4444
4545
- name: Run NYTimes Script
4646
id: nytimes_update

.github/workflows/punch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Install dependencies
6767
run: |
6868
python -m pip install --upgrade pip
69-
pip install -r requirements.simple.txt
69+
pip install -r requirements/requirements.simple.txt
7070
7171
- name: Run punch reminder script (Scheduled)
7272
run: python scripts/bot/punch_bot.py --job punch_reminder

.github/workflows/reminders.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- name: Install dependencies
7272
run: |
7373
python -m pip install --upgrade pip
74-
pip install -r requirements.simple.txt
74+
pip install -r requirements/requirements.simple.txt
7575
7676
- name: Run Telegram script for daily punch card reminders
7777
run: python scripts/bot/reminders_bot.py --job send_message --message "Punch card in WeCom"

.github/workflows/translate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- name: Install dependencies
2121
run: |
22-
pip install -r requirements.txt
22+
pip install -r requirements/requirements.txt
2323
2424
- name: Translate posts
2525
run: |
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)