2022-04-10 15:28:51 +02:00
|
|
|
name: Fetch new content of tracked links and files
|
2021-04-24 14:19:01 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2022-05-13 11:27:17 +02:00
|
|
|
- cron: '* * 5 * *'
|
2021-04-24 14:19:01 +02:00
|
|
|
push:
|
2021-04-26 22:27:57 +02:00
|
|
|
# trigger on updated linkbase
|
2021-04-24 14:19:01 +02:00
|
|
|
branches:
|
2021-04-24 14:28:06 +02:00
|
|
|
- main
|
2021-04-24 14:19:01 +02:00
|
|
|
|
|
|
|
jobs:
|
2022-04-10 15:28:51 +02:00
|
|
|
fetch_new_content:
|
2021-04-24 14:19:01 +02:00
|
|
|
name: Make files tree
|
|
|
|
runs-on: macos-10.15
|
2022-05-13 11:57:11 +02:00
|
|
|
continue-on-error: true
|
2022-05-11 11:10:08 +02:00
|
|
|
timeout-minutes: 10
|
2021-04-24 14:19:01 +02:00
|
|
|
|
2022-05-13 11:57:11 +02:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
mode: [
|
|
|
|
"0",
|
|
|
|
"6"
|
|
|
|
]
|
|
|
|
|
2021-04-24 14:19:01 +02:00
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Clone.
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
2021-04-25 18:00:32 +02:00
|
|
|
token: ${{ secrets.PAT }}
|
2021-04-24 14:19:01 +02:00
|
|
|
|
|
|
|
- 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 }}
|
2022-05-10 20:32:58 +02:00
|
|
|
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 }}
|
2022-05-13 11:57:11 +02:00
|
|
|
MODE: ${{ matrix.mode }}
|
2021-04-24 14:19:01 +02:00
|
|
|
run: |
|
2021-04-24 22:46:32 +02:00
|
|
|
git pull
|
2021-04-24 14:19:01 +02:00
|
|
|
python make_files_tree.py
|
2022-05-09 12:31:55 +02:00
|
|
|
rm -rf __pycache__
|
2021-04-24 14:19:01 +02:00
|
|
|
|
2022-05-13 11:57:11 +02:00
|
|
|
- name: Prepare data for mode 0.
|
|
|
|
if: matrix.mode == '0'
|
2021-04-24 14:19:01 +02:00
|
|
|
run: |
|
|
|
|
git checkout data
|
|
|
|
|
2022-05-13 11:57:11 +02:00
|
|
|
mv data/web_res data_ci/web_res
|
2021-04-24 14:19:01 +02:00
|
|
|
rm -rf data
|
|
|
|
mv data_ci data
|
|
|
|
|
2022-05-13 11:57:11 +02:00
|
|
|
- name: Prepare data for mode 6.
|
|
|
|
if: matrix.mode == '6'
|
|
|
|
run: |
|
|
|
|
git checkout data
|
|
|
|
|
|
|
|
mv data/web data_ci/web
|
|
|
|
mv data/client data_ci/client
|
|
|
|
mv data/server data_ci/server
|
|
|
|
|
|
|
|
rm -rf data
|
|
|
|
mv data_ci data
|
|
|
|
|
|
|
|
- name: Commit and push changes.
|
|
|
|
run: |
|
2021-04-24 14:19:01 +02:00
|
|
|
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"
|
2021-04-24 14:19:01 +02:00
|
|
|
git push
|