We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c46761c commit 2dd8d13Copy full SHA for 2dd8d13
.github/workflows/main.yml
@@ -21,7 +21,7 @@ jobs:
21
- name: Install Python dependencies
22
run: |
23
python -m pip install --upgrade pip
24
- pip install algoliasearch
+ pip install --upgrade 'algoliasearch>=4.0,<5.0'
25
26
- name: Create deleteIndex.py script
27
@@ -33,7 +33,9 @@ jobs:
33
echo "print(\"Deleted records.\")" >> tmp/deleteIndex.py
34
35
- name: Run deleteIndex.py
36
- run: python tmp/deleteIndex.py
+ run: |
37
+ pip show algoliasearch
38
+ python tmp/deleteIndex.py
39
40
- name: Clone Algolia scraper
41
uses: actions/checkout@v2
0 commit comments