diff options
author | Alexandre Flament <alex@al-f.net> | 2021-02-25 17:42:52 +0100 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2021-03-04 11:59:14 +0100 |
commit | b8cd3264644208d7afa1a239f829222d45226334 (patch) | |
tree | abbbd7fe188e7837f8351935ec47877799bc9474 /.github/workflows | |
parent | 111d38cd8fe35365cab2121a362bd17159c66d3f (diff) | |
download | searxng-b8cd3264644208d7afa1a239f829222d45226334.tar.gz searxng-b8cd3264644208d7afa1a239f829222d45226334.zip |
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/workflows')
-rw-r--r-- | .github/workflows/data-update.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/data-update.yml b/.github/workflows/data-update.yml index c9c6b29a4..eb9bed8c8 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 |