summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-02-25 17:42:52 +0100
committerAlexandre Flament <alex@al-f.net>2021-03-04 11:59:14 +0100
commitb8cd3264644208d7afa1a239f829222d45226334 (patch)
treeabbbd7fe188e7837f8351935ec47877799bc9474 /.github
parent111d38cd8fe35365cab2121a362bd17159c66d3f (diff)
Add searx_extra package
Split the utils directory into: * searx_extra contains update scripts, standalone_searx.py * utils contains the files to build and setup searx.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/data-update.yml16
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/data-update.yml b/.github/workflows/data-update.yml
index c9c6b29a..eb9bed8c 100644
--- a/.github/workflows/data-update.yml
+++ b/.github/workflows/data-update.yml
@@ -11,12 +11,12 @@ jobs:
strategy:
matrix:
fetch:
- - ahmia_blacklist
- - currencies
- - external_bangs
- - firefox_version
- - languages
- - wikidata_units
+ - update_ahmia_blacklist.py
+ - update_currencies.py
+ - update_external_bangs.py
+ - update_firefox_version.py
+ - update_languages.py
+ - update_wikidata_units.py
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -45,10 +45,10 @@ jobs:
- name: Fetch data
env:
- FETCH_SCRIPT: utils/fetch_${{ matrix.fetch }}.py
+ FETCH_SCRIPT: ./searx_extra/update/${{ matrix.fetch }}
run: |
source local/py3/bin/activate
- python $FETCH_SCRIPT
+ $FETCH_SCRIPT
- name: Create Pull Request
id: cpr