Update Shop Prices DE #513
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update Shop Prices DE | |
| on: | |
| # Schedule makes this bot run in regular intervals, without any interventions | |
| schedule: | |
| - cron: "15 9 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: bots/crawl-rewe-de/update-shop/ | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt-get update -y | |
| sudo apt-get install -y libxml2-dev libcurl4-openssl-dev libssl-dev language-pack-de | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install node packages | |
| run: | | |
| npm install -g @nzz/q-cli | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10.x" | |
| - name: Get pip cache dir | |
| id: pip-cache | |
| run: | | |
| echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT | |
| - name: Cache python packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.pip-cache.outputs.dir }} | |
| key: ${{ runner.os }}-pip-${{ hashFiles('./bots/crawl-rewe-de/requirements.txt') }} | |
| - name: Install python packages | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r ../requirements.txt | |
| - name: Run python scripts | |
| run: | | |
| python create-shop-file.py | |
| - name: Run Q cli | |
| run: Q update-item | |
| env: | |
| Q_PRODUCTION_SERVER: ${{ secrets.Q_PRODUCTION_SERVER }} | |
| Q_PRODUCTION_ACCESSTOKEN: ${{ secrets.Q_PRODUCTION_ACCESSTOKEN }} | |
| - name: Delete products.csv | |
| run: | | |
| rm -f ../data/products.csv | |
| - uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| file_pattern: '*.txt *.json' | |
| commit_message: "Commit updated TXT and/or JSON files" | |
| - name: Log failure to slack | |
| if: always() | |
| uses: ravsamhq/notify-slack-action@2.5.0 | |
| with: | |
| status: ${{ job.status }} | |
| notify_when: "failure" | |
| env: | |
| SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_DE_SLACK }} |