- Update Gitea configuration (remove DEFAULT_ACTIONS_URL) - Fix deployment documentation - Update Ansible playbooks - Clean up deprecated files - Add new deployment scripts and templates
25 lines
993 B
Plaintext
25 lines
993 B
Plaintext
# Gitea Actions Runner Configuration
|
|
|
|
# Gitea Instance URL (must be accessible from runner)
|
|
GITEA_INSTANCE_URL=https://git.michaelschiemer.de
|
|
|
|
# Runner Registration Token (get from Gitea: Admin > Actions > Runners)
|
|
# To generate: Gitea UI > Site Administration > Actions > Runners > Create New Runner
|
|
GITEA_RUNNER_REGISTRATION_TOKEN=
|
|
|
|
# Runner Name (appears in Gitea UI)
|
|
GITEA_RUNNER_NAME=dev-runner-01
|
|
|
|
# Runner Labels (comma-separated)
|
|
# Format: label:image
|
|
# Example: ubuntu-latest:docker://node:16-bullseye
|
|
# php-ci: Uses optimized CI image with PHP 8.5, Composer, Ansible pre-installed
|
|
# Build the image first: ./build-ci-image.sh
|
|
GITEA_RUNNER_LABELS=ubuntu-latest:docker://node:16-bullseye,ubuntu-22.04:docker://node:16-bullseye,debian-latest:docker://debian:bullseye,php-ci:docker://php-ci:latest
|
|
|
|
# Optional: Custom Docker registry for job images
|
|
# DOCKER_REGISTRY_MIRROR=https://registry.michaelschiemer.de
|
|
|
|
# Optional: Runner capacity (max concurrent jobs)
|
|
# GITEA_RUNNER_CAPACITY=1
|