2024-10-20 19:24:03 +02:00
|
|
|
name: Generate File Tree 🌳
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2024-10-20 19:34:53 +02:00
|
|
|
- dev
|
2024-10-20 19:24:03 +02:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
generate_file_tree:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set Up Python
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: "3.9"
|
|
|
|
|
|
|
|
- name: Generate File Tree
|
2024-10-20 19:34:53 +02:00
|
|
|
run: python scripts/generate_folder_tree.py ../svg ../png ../webp
|
2024-10-20 19:24:03 +02:00
|
|
|
|
|
|
|
- name: Commit and Push Changes
|
|
|
|
run: |
|
|
|
|
git config --global user.email "noreply@lammers.media"
|
|
|
|
git config --global user.name "Dashboard Icons Bot"
|
2024-10-20 19:34:53 +02:00
|
|
|
git add ../tree.json
|
2024-10-20 19:24:03 +02:00
|
|
|
git commit -m ":construction_worker: Generate file tree" || exit 0
|
|
|
|
git push
|