Skip to content

Commit 1709e35

Browse files
committed
move requirements.txt
1 parent 9cb0d11 commit 1709e35

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
id: cache-deps
3434
with:
3535
path: ~/.cache/pip
36-
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
36+
key: ${{ runner.os }}-pip-${{ hashFiles('**/site/requirements.txt') }}
3737
restore-keys: |
3838
${{ runner.os }}-pip-
3939
4040
- name: Install dependencies
4141
if: steps.cache-deps.outputs.cache-hit != 'true'
4242
run: |
4343
python -m pip install --upgrade pip
44-
pip install -r requirements.txt
44+
pip install -r site/requirements.txt
4545
4646
- name: Build site
4747
run: python site/build_site.py

.github/workflows/validate-xls.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
uses: actions/cache@v4
2727
with:
2828
path: ~/.cache/pip
29-
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
29+
key: ${{ runner.os }}-pip-${{ hashFiles('**/site/requirements.txt') }}
3030
restore-keys: |
3131
${{ runner.os }}-pip-
3232
3333
- name: Install dependencies
3434
if: steps.cache-deps.outputs.cache-hit != 'true'
3535
run: |
3636
python -m pip install --upgrade pip
37-
pip install -r requirements.txt
37+
pip install -r site/requirements.txt
3838
3939
- name: Validate XLS document parsing
4040
run: |
File renamed without changes.

0 commit comments

Comments
 (0)