Commited backup

This commit is contained in:
2025-07-10 21:02:34 +03:00
parent 952c1001e3
commit da0b80823e
1310 changed files with 254133 additions and 41 deletions

View File

@@ -0,0 +1,24 @@
name: Generate full.txt
on: [push]
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Configure Git
run: |
git config --global user.name "Github Actions"
git config --global user.email "actions@github.com"
- name: Generate full.txt
run: |
echo "Generating full.txt"
python _gen_full_txt.py || echo "Error"
- name: Commit & Push changes
run: |
echo "Committing changes"
git commit -a -m "Update full.txt"
echo "Pushing changes to repository"
git push origin main