root docs pipeline requests through proxy

Signed-off-by: jkoberg <jkoberg@owncloud.com>
This commit is contained in:
jkoberg
2023-10-17 11:48:06 +02:00
parent dfeff633fa
commit 31fa68af54
2 changed files with 14 additions and 0 deletions

View File

@@ -1818,6 +1818,14 @@ def docs():
{
"name": "docs-generate",
"image": OC_CI_GOLANG,
"environment": {
"HTTP_PROXY": {
"from_secret": "drone_http_proxy",
},
"HTTPS_PROXY": {
"from_secret": "drone_http_proxy",
},
},
"commands": ["make docs-generate"],
},
{

View File

@@ -0,0 +1,6 @@
Bugfix: Fix 403 in docs pipeline
Docs pipeline was not routed through our proxies which could lead to requests being blacklisted
https://github.com/owncloud/ocis/issues/7509
https://github.com/owncloud/ocis/pull/7511