feat(ci)!: enhance changelog generation with context augmentation
All checks were successful
Auto Changelog & Release / release (push) Successful in 13s

This commit is contained in:
2025-09-27 21:44:20 +02:00
parent 313ace34fe
commit 8de8b47038
6 changed files with 99 additions and 15 deletions

9
scripts/install-python.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
# install-python.sh – installs the latest Python version through apt
# Usage: sudo ./install-python.sh
set -euo pipefail
apt update
apt install -y python3
echo "✅ Python $(python3 --version) installed"