fix(server): variable is not defined
This commit is contained in:
parent
711da83bd2
commit
05e1a4c038
|
@ -68,7 +68,7 @@ DRONE_BITBUCKET_CLIENT_SECRET={{ drone_bitbucket_client_secret }}
|
||||||
DRONE_BITBUCKET_SKIP_VERIFY={{ drone_bitbucket_skip_verify }}
|
DRONE_BITBUCKET_SKIP_VERIFY={{ drone_bitbucket_skip_verify }}
|
||||||
DRONE_BITBUCKET_DEBUG={{ drone_bitbucket_debug }}
|
DRONE_BITBUCKET_DEBUG={{ drone_bitbucket_debug }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if drone_stash_server != "" %}
|
{% if drone_stash_server is defined and drone_stash_server != "" %}
|
||||||
DRONE_STASH_SERVER={{ drone_stash_server }}
|
DRONE_STASH_SERVER={{ drone_stash_server }}
|
||||||
DRONE_STASH_CONSUMER_KEY={{ drone_stash_consumer_key }}
|
DRONE_STASH_CONSUMER_KEY={{ drone_stash_consumer_key }}
|
||||||
DRONE_STASH_CONSUMER_SECRET={{ drone_stash_consumer_secret }}
|
DRONE_STASH_CONSUMER_SECRET={{ drone_stash_consumer_secret }}
|
||||||
|
@ -76,7 +76,7 @@ DRONE_STASH_PRIVATE_KEY={{ drone_stash_private_key }}
|
||||||
DRONE_STASH_SKIP_VERIFY={{ drone_stash_skip_verify }}
|
DRONE_STASH_SKIP_VERIFY={{ drone_stash_skip_verify }}
|
||||||
DRONE_STASH_DEBUG={{ drone_stash_debug }}
|
DRONE_STASH_DEBUG={{ drone_stash_debug }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if drone_gogs_server != "" %}
|
{% if drone_stash_server is defined and drone_gogs_server != "" %}
|
||||||
DRONE_GOGS_SERVER={{ drone_gogs_server }}
|
DRONE_GOGS_SERVER={{ drone_gogs_server }}
|
||||||
DRONE_GOGS_SKIP_VERIFY={{ drone_gogs_skip_verify }}
|
DRONE_GOGS_SKIP_VERIFY={{ drone_gogs_skip_verify }}
|
||||||
DRONE_GOGS_DEBUG={{ drone_gogs_debug }}
|
DRONE_GOGS_DEBUG={{ drone_gogs_debug }}
|
||||||
|
@ -119,7 +119,15 @@ DRONE_AUTHENTICATION_TOKEN={{ drone_authentication_token }}
|
||||||
{% if drone_authentication_skip_verify is defined %}
|
{% if drone_authentication_skip_verify is defined %}
|
||||||
DRONE_AUTHENTICATION_SKIP_VERIFY=true
|
DRONE_AUTHENTICATION_SKIP_VERIFY=true
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if drone_repository_filter is defined %}
|
||||||
DRONE_REPOSITORY_FILTER={{ drone_repository_filter }}
|
DRONE_REPOSITORY_FILTER={{ drone_repository_filter }}
|
||||||
|
{% endif %}
|
||||||
|
{% if drone_webhook_endpoint is defined %}
|
||||||
DRONE_WEBHOOK_ENDPOINT={{ drone_webhook_endpoint }}
|
DRONE_WEBHOOK_ENDPOINT={{ drone_webhook_endpoint }}
|
||||||
|
{% endif %}
|
||||||
|
{% if drone_webhook_secret is defined %}
|
||||||
DRONE_WEBHOOK_SECRET={{ drone_webhook_secret }}
|
DRONE_WEBHOOK_SECRET={{ drone_webhook_secret }}
|
||||||
|
{% endif %}
|
||||||
|
{% if drone_webhook_skip_verify is defined %}
|
||||||
DRONE_WEBHOOK_SKIP_VERIFY={{ drone_webhook_skip_verify }}
|
DRONE_WEBHOOK_SKIP_VERIFY={{ drone_webhook_skip_verify }}
|
||||||
|
{% endif %}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user