telegram-crawler/.github/workflows/make_files_tree.yml

168 lines
3.9 KiB
YAML
Raw Normal View History

2022-04-10 15:28:51 +02:00
name: Fetch new content of tracked links and files
on:
2022-06-09 14:02:22 +02:00
workflow_dispatch:
schedule:
2022-05-13 12:49:33 +02:00
- cron: '* * * * *'
push:
# trigger on updated linkbase
branches:
2021-04-24 14:28:06 +02:00
- main
jobs:
2022-04-10 15:28:51 +02:00
fetch_new_content:
name: Make files tree
runs-on: ${{matrix.os}}
continue-on-error: true
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- mode: web
2024-06-02 22:13:27 +02:00
os: macos-12
- mode: web_res
os: ubuntu-20.04
- mode: web_tr
os: ubuntu-20.04
- mode: server
os: ubuntu-20.04
- mode: client
os: macos-12
- mode: mini_app
os: ubuntu-20.04
steps:
- name: Clone.
uses: actions/checkout@v2
with:
2021-04-25 18:00:32 +02:00
token: ${{ secrets.PAT }}
- name: Setup Python.
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies.
run: |
pip install -r requirements.txt
- name: Generate files tree.
env:
OUTPUT_FOLDER: "data_ci/"
2022-04-24 13:33:16 +02:00
TELEGRAM_SESSION: ${{ secrets.TELEGRAM_SESSION }}
TELEGRAM_SESSION_TEST: ${{ secrets.TELEGRAM_SESSION_TEST }}
2022-04-24 13:33:16 +02:00
TELEGRAM_API_ID: ${{ secrets.TELEGRAM_API_ID }}
TELEGRAM_API_HASH: ${{ secrets.TELEGRAM_API_HASH }}
MODE: ${{ matrix.mode }}
run: |
git pull
python make_files_tree.py
2022-05-09 12:31:55 +02:00
rm -rf __pycache__
- name: Prepare data.
if: matrix.mode == 'web'
run: |
git checkout data
git pull
mv data/web_res data_ci/web_res
mv data/web_tr data_ci/web_tr
mv data/client data_ci/client
mv data/server data_ci/server
mv data/mini_app data_ci/mini_app
rm -rf data
mv data_ci data
- name: Prepare data.
if: matrix.mode == 'web_res'
run: |
git checkout data
git pull
mv data/web data_ci/web
mv data/web_tr data_ci/web_tr
mv data/client data_ci/client
mv data/server data_ci/server
mv data/mini_app data_ci/mini_app
rm -rf data
mv data_ci data
- name: Prepare data.
if: matrix.mode == 'web_tr'
run: |
git checkout data
git pull
mv data/web data_ci/web
mv data/web_res data_ci/web_res
mv data/server data_ci/server
mv data/client data_ci/client
mv data/mini_app data_ci/mini_app
rm -rf data
mv data_ci data
- name: Prepare data.
if: matrix.mode == 'server'
run: |
git checkout data
git pull
mv data/web data_ci/web
mv data/web_res data_ci/web_res
mv data/web_tr data_ci/web_tr
mv data/client data_ci/client
mv data/mini_app data_ci/mini_app
rm -rf data
mv data_ci data
- name: Prepare data.
if: matrix.mode == 'client'
run: |
git checkout data
git pull
mv data/web data_ci/web
mv data/web_res data_ci/web_res
mv data/web_tr data_ci/web_tr
mv data/server data_ci/server
mv data/mini_app data_ci/mini_app
rm -rf data
mv data_ci data
- name: Prepare data.
if: matrix.mode == 'mini_app'
run: |
git checkout data
git pull
mv data/web data_ci/web
mv data/web_res data_ci/web_res
mv data/web_tr data_ci/web_tr
mv data/server data_ci/server
mv data/client data_ci/client
rm -rf data
mv data_ci data
- name: Commit and push changes.
run: |
git config --global user.email "github-action@users.noreply.github.com"
git config --global user.name "GitHub Action"
git add .
2021-04-24 14:38:39 +02:00
git commit -m "Update content of files"
git push