diff options
author | Alexandre Flament <alex@al-f.net> | 2021-03-05 11:12:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 11:12:31 +0100 |
commit | 245f8626dd92f82cdc03219ee3f7488ae938c864 (patch) | |
tree | 122aa9544b4742eceea62a87a54a63d4461a8d0e /.github | |
parent | d9a35fc28e7805069d6bc0bd58232b6bc2526c27 (diff) | |
download | searxng-245f8626dd92f82cdc03219ee3f7488ae938c864.tar.gz searxng-245f8626dd92f82cdc03219ee3f7488ae938c864.zip |
Fix data-update.yml, run once a month
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/data-update.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/data-update.yml b/.github/workflows/data-update.yml index 9f1ebd2cd..ae5acdbd9 100644 --- a/.github/workflows/data-update.yml +++ b/.github/workflows/data-update.yml @@ -1,7 +1,7 @@ name: "Update searx.data" on: schedule: - - cron: "05 06 * * 5" + - cron: "05 06 1 * *" workflow_dispatch: jobs: @@ -34,13 +34,13 @@ jobs: - name: Install Python dependencies run: | - pip install -U pip wheel setuptools - pip install -r requirements.txt + make V=1 install - name: Fetch data env: FETCH_SCRIPT: ./searx_extra/update/${{ matrix.fetch }} run: | + source local/py3/bin/activate $FETCH_SCRIPT - name: Create Pull Request |