dockerexec-ti gitea-runner bash# 进入容器# 容器内生成config.yamlact_runner generate-config > /tmp/config.yamlexit# 将config.yaml从容器内拷贝出来docker cp gitea-runner:/tmp/config.yaml . docker-compose.yaml 中增加 config.yaml 的挂载: volumes: - /data/gitea-runner/config.yaml:/config.yaml 重...
gitea-runner.yml: 代码语言:yml AI代码解释 version:"3.8"services:runner:image:gitea/act_runnerrestart:alwaysprivileged:trueenvironment:CONFIG_FILE:/config.yamlGITEA_INSTANCE_URL:"gitea访问地址"GITEA_RUNNER_REGISTRATION_TOKEN:"第二步的Token"GITEA_RUNNER_NAME:"自定义Runner的名称用于显示"GITEA_RUNNER_LABE...
# just run `./act_runner generate-config > config.yaml` to generate a config file. log: # The level of logging, can be trace, debug, info, warn, error, fatal level: info runner: # Where to store the registration result. file: .runner ...
生成配置文件 docker run --entrypoint="" --rm -it gitea/act_runner:latest act_runner generate-config > config.yaml 通过docker-compose.yml启动act_runner容器 version: "3.8" services: runner: image: gitea/act_runner:nightly environment: CONFIG_FILE: /config.yaml GITEA_INSTANCE_URL: "${INSTANCE_...
You can specify the configuration file path with -c/--config argument../act_runner -c config.yaml register # register with config file ./act_runner -c config.yaml daemon # run with config fileYou can read the latest version of the configuration file online at config.example.yaml....
act runner 的默认配置将被写入config.yaml,随后我们可以对配置文件进行自定义修改,并在执行任何命令时指定配置文件: 1 ./act_runner-0.2.5-linux-amd64 --config config.yaml [command] 未指定配置文件时,act runner 将使用默认配置。 2.2.3 注册
GITEA_RUNNER_REGISTRATION_TOKEN:gitea设置中,actions的token GITEA_RUNNER_NAME: 名称 GITEA_RUNNER_LABELS:标签 version:"3.8"services:runner:image:gitea/act_runner:nightlyenvironment:CONFIG_FILE:/config.yamlGITEA_INSTANCE_URL:"http://192.168.2.19:3000"GITEA_RUNNER_REGISTRATION_TOKEN:"7oG53H5eRnjQwSNYmc7N...
Add missed column title in runner management page (#24328) Automatically select the org when click create repo from org dashboard (#24325) Modify width of ui container, fine tune css for settings pages and org header (#24315) Fix config list overflow and layout (#24312) Improve some mod...
version:"3.8"services:runner:image:gitea/act_runner:nightlyenvironment:CONFIG_FILE:/config.yamlGITEA_INSTANCE_URL:"${INSTANCE_URL}"GITEA_RUNNER_REGISTRATION_TOKEN:"${REGISTRATION_TOKEN}"GITEA_RUNNER_NAME:"${RUNNER_NAME}"GITEA_RUNNER_LABELS:"${RUNNER_LABELS}"volumes:-./config.yaml:/config.yaml-...
example/ios/Runner/main.m +8 -0 example/ios/Runner/mtopsdk_configuration.plist 二进制 +161 -0 example/lib/main.dart +202 -0 example/pubspec.lock +63 -0 example/pubspec.yaml +27 -0 example/test/widget_test.dart +36 -0 ios/.gitignore +0 -0 +14 -0 ios...