Update .forgejo/workflows/generate-m3u.yml

This commit is contained in:
stoney420 2025-06-27 23:41:32 +02:00
parent 0c04d25e8d
commit 43a7650144

View file

@ -1,4 +1,4 @@
name: 📺 Generate M3U Playlist
name: Generate M3U Playlist
on:
push:
@ -10,22 +10,22 @@ jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: 📥 Checkout Repository
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 🐍 Set up Python
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: ⚙️ Configure Git
- name: Configure Git
run: |
git config --local user.email "actions@forgejo.plainrock127.xyz"
git config --local user.name "IPTV Playlist Bot"
- name: 🔍 Check files before processing
- name: Check files before processing
run: |
echo "=== Repository Status ==="
ls -la
@ -63,7 +63,7 @@ jobs:
echo " bulk_import.m3u not found (normal if no import)"
fi
- name: 🔧 Setup Python package structure
- name: Setup Python package structure
run: |
echo "=== Setting up Python package structure ==="
@ -88,7 +88,7 @@ EOF
echo "✅ Package structure ready"
- name: 🚀 Generate M3U Playlist
- name: Generate M3U Playlist
run: |
echo "=== Running playlist generation ==="
@ -107,7 +107,7 @@ EOF
# Go back to root
cd ..
- name: 📊 Check results
- name: Check results
run: |
echo "=== Results ==="
ls -la
@ -141,7 +141,7 @@ EOF
ls -la config/
fi
- name: 💾 Commit and push changes
- name: Commit and push changes
run: |
echo "=== Preparing to commit ==="