diff --git a/ct/github-runner.sh b/ct/github-runner.sh new file mode 100644 index 000000000..b959f5089 --- /dev/null +++ b/ct/github-runner.sh @@ -0,0 +1,71 @@ +#!/usr/bin/env bash +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) + +# Copyright (c) 2021-2026 community-scripts ORG +# Author: MickLesk (CanbiZ) +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/actions/runner + +APP="GitHub-Runner" +var_tags="${var_tags:-ci}" +var_cpu="${var_cpu:-2}" +var_ram="${var_ram:-2048}" +var_disk="${var_disk:-8}" +var_os="${var_os:-debian}" +var_version="${var_version:-13}" +var_unprivileged="${var_unprivileged:-1}" +var_nesting="${var_nesting:-1}" +var_keyctl="${var_keyctl:-1}" + +header_info "$APP" +variables +color +catch_errors + +function update_script() { + header_info + check_container_storage + check_container_resources + + if [[ ! -f /opt/actions-runner/run.sh ]]; then + msg_error "No ${APP} Installation Found!" + exit 1 + fi + + if check_for_gh_release "actions-runner" "actions/runner"; then + msg_info "Stopping Service" + systemctl stop actions-runner + msg_ok "Stopped Service" + + msg_info "Backing up runner configuration" + BACKUP_DIR="/opt/actions-runner.backup" + mkdir -p "$BACKUP_DIR" + for f in .runner .credentials .credentials_rsaparams .env .path; do + [[ -f /opt/actions-runner/$f ]] && cp -a /opt/actions-runner/$f "$BACKUP_DIR/" + done + msg_ok "Backed up configuration" + + CLEAN_INSTALL=1 fetch_and_deploy_gh_release "actions-runner" "actions/runner" "prebuild" "latest" "/opt/actions-runner" "actions-runner-linux-x64-*.tar.gz" + + msg_info "Restoring runner configuration" + for f in .runner .credentials .credentials_rsaparams .env .path; do + [[ -f "$BACKUP_DIR/$f" ]] && cp -a "$BACKUP_DIR/$f" /opt/actions-runner/ + done + rm -rf "$BACKUP_DIR" + msg_ok "Restored configuration" + + msg_info "Starting Service" + systemctl start actions-runner + msg_ok "Started Service" + msg_ok "Updated successfully!" + fi + exit +} + +start +build_container +description + +msg_ok "Completed successfully!\n" +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" +echo -e "${INFO}${YW} After first boot, run config.sh with your token and start the service.${CL}" diff --git a/install/github-runner-install.sh b/install/github-runner-install.sh new file mode 100644 index 000000000..80a9d24cf --- /dev/null +++ b/install/github-runner-install.sh @@ -0,0 +1,58 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2026 community-scripts ORG +# Author: MickLesk (CanbiZ) +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://docs.github.com/en/actions/hosting-your-own-runners + +source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +msg_info "Installing Dependencies" +$STD apt install -y \ + git \ + gh +msg_ok "Installed Dependencies" + +NODE_VERSION="24" setup_nodejs + +msg_info "Creating runner user (no sudo)" +useradd -m -s /bin/bash runner +msg_ok "Runner user ready" + +fetch_and_deploy_gh_release "actions-runner" "actions/runner" "prebuild" "latest" "/opt/actions-runner" "actions-runner-linux-x64-*.tar.gz" + +msg_info "Setting ownership for runner user" +chown -R runner:runner /opt/actions-runner +msg_ok "Ownership set" + +msg_info "Creating Service" +cat </etc/systemd/system/actions-runner.service +[Unit] +Description=GitHub Actions self-hosted runner +Documentation=https://docs.github.com/en/actions/hosting-your-own-runners +After=network-online.target +Wants=network-online.target + +[Service] +Type=simple +User=runner +WorkingDirectory=/opt/actions-runner +ExecStart=/opt/actions-runner/run.sh +Restart=on-failure +RestartSec=10 + +[Install] +WantedBy=multi-user.target +EOF +systemctl enable -q actions-runner +msg_ok "Created Service" + +motd_ssh +customize +cleanup_lxc