mirror of
https://github.com/MuRuLOSE/limoka.git
synced 2026-06-16 22:34:19 +02:00
24 lines
667 B
YAML
24 lines
667 B
YAML
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 |