first commit
This commit is contained in:
24
infra/.env
Normal file
24
infra/.env
Normal file
@@ -0,0 +1,24 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user