Skip to content

Commit 2dd8d13

Browse files
committed
Update
1 parent c46761c commit 2dd8d13

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install Python dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install algoliasearch
24+
pip install --upgrade 'algoliasearch>=4.0,<5.0'
2525
2626
- name: Create deleteIndex.py script
2727
run: |
@@ -33,7 +33,9 @@ jobs:
3333
echo "print(\"Deleted records.\")" >> tmp/deleteIndex.py
3434
3535
- name: Run deleteIndex.py
36-
run: python tmp/deleteIndex.py
36+
run: |
37+
pip show algoliasearch
38+
python tmp/deleteIndex.py
3739
3840
- name: Clone Algolia scraper
3941
uses: actions/checkout@v2

0 commit comments

Comments
 (0)