Files
auto-changelog-release-action/scripts/install-python.sh
Max P. 8de8b47038
All checks were successful
Auto Changelog & Release / release (push) Successful in 13s
feat(ci)!: enhance changelog generation with context augmentation
2025-09-27 21:44:20 +02:00

9 lines
227 B
Bash
Executable File

#!/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"