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:
|
2021-04-26 22:27:57 +02:00
|
|
|
- cron: '* * * * *'
|
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-09 12:26:51 +02:00
|
|
|
timeout-minutes: 10
|
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 }}
|
|
|
|
TELEGRAM_API_ID: ${{ secrets.TELEGRAM_API_ID }}
|
|
|
|
TELEGRAM_API_HASH: ${{ secrets.TELEGRAM_API_HASH }}
|
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
|
|
|
|
|
|
|
|
- name: Commit and push changes.
|
|
|
|
run: |
|
|
|
|
git checkout data
|
|
|
|
|
|
|
|
rm -rf data
|
2022-05-09 12:26:51 +02:00
|
|
|
rm -rf __pycache__
|
2021-04-24 14:19:01 +02:00
|
|
|
mv data_ci data
|
|
|
|
|
|
|
|
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
|