24 lines
1.2 KiB
Bash
24 lines
1.2 KiB
Bash
# Base URL of your Gitea instance (used by the runner to register itself
|
|
# and to send/receive workflow job information).
|
|
GITEA_INSTANCE_URL=https://git.avaaz.ai
|
|
|
|
# One-time registration token generated in:
|
|
# Gitea → Site Administration → Actions → Runners → "Generate Token"
|
|
# This MUST be filled in once, so the runner can register.
|
|
# After registration, the runner stores its identity inside ./gitea-runner-data/.runner
|
|
# and this value is no longer needed (can be left blank).
|
|
GITEA_RUNNER_REGISTRATION_TOKEN=
|
|
|
|
# Human-readable name for this runner.
|
|
# This is shown in the Gitea UI so you can distinguish multiple runners:
|
|
# Example: "vps-runner", "staging-runner", "gpu-runner"
|
|
GITEA_RUNNER_NAME=gitea-runner
|
|
|
|
# Runner labels allow workflows to choose specific runners.
|
|
# The label format is: label[:schema[:args]]
|
|
# - "ubuntu-latest" is the <label> name that workflows request using runs-on: [ "ubuntu-latest" ].
|
|
# - "docker://" is the <schema> indicating the job runs inside a separate Docker container.
|
|
# - "catthehacker/ubuntu:act-latest" is the <args>, specifying the Docker image to use for the container.
|
|
# Workflows can target this using:
|
|
# runs-on: [ "ubuntu-latest" ]
|
|
GITEA_RUNNER_LABELS=ubuntu-latest:docker://catthehacker/ubuntu:act-latest |