From 816b21f4bd8774d6f04b7f5d9f0bfa6fd761135e Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Gomond Date: Sun, 1 Oct 2023 01:38:22 +0200 Subject: [PATCH] Fixed force_pull boolean unmarshal error --- image/config.template.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image/config.template.yaml b/image/config.template.yaml index 5d5ed5b..2ce3a70 100644 --- a/image/config.template.yaml +++ b/image/config.template.yaml @@ -93,7 +93,7 @@ container: # If it's "-", act_runner will find an available docker host automatically, but the docker host won't be mounted to the job containers and service containers. # If it's not empty or "-", the specified docker host will be used. An error will be returned if it doesn't work. docker_host: '${GITEA_RUNNER_JOB_CONTAINER_DOCKER_HOST:-}' - force_pull: '${GITEA_RUNNER_JOB_CONTAINER_FORCE_PULL:-false}' + force_pull: ${GITEA_RUNNER_JOB_CONTAINER_FORCE_PULL:-false} host: # The parent directory of a job's working directory.