@@ -19,6 +19,9 @@ def main(ctx):
19
19
deployment_branch = default_branch
20
20
pdf_branch = default_branch
21
21
22
+ # Environment variables needed to generate the search index are only provided in the docs repo in .drone.star
23
+ # Also see the documentation for more details.
24
+
22
25
return [
23
26
checkStarlark (),
24
27
build (ctx , environment , latest_version , deployment_branch , base_branch , pdf_branch ),
@@ -86,33 +89,17 @@ def build(ctx, environment, latest_version, deployment_branch, base_branch, pdf_
86
89
{
87
90
"name" : "docs-deps" ,
88
91
"pull" : "always" ,
89
- "image" : "owncloudci/nodejs:16 " ,
92
+ "image" : "owncloudci/nodejs:18 " ,
90
93
"commands" : [
91
94
"yarn install" ,
92
95
],
93
96
},
94
- {
95
- "name" : "docs-validate" ,
96
- "pull" : "always" ,
97
- "image" : "owncloudci/nodejs:16" ,
98
- "commands" : [
99
- "yarn validate --fetch" ,
100
- ],
101
- },
102
97
{
103
98
"name" : "docs-build" ,
104
99
"pull" : "always" ,
105
- "image" : "owncloudci/nodejs:16 " ,
100
+ "image" : "owncloudci/nodejs:18 " ,
106
101
"commands" : [
107
- "yarn antora --fetch --attribute format=html" ,
108
- ],
109
- },
110
- {
111
- "name" : "docs-pdf" ,
112
- "pull" : "always" ,
113
- "image" : "owncloudci/asciidoctor:latest" ,
114
- "commands" : [
115
- "bin/makepdf -m" ,
102
+ "yarn antora" ,
116
103
],
117
104
},
118
105
{
@@ -157,29 +144,30 @@ def build(ctx, environment, latest_version, deployment_branch, base_branch, pdf_
157
144
],
158
145
},
159
146
},
160
- {
161
- "name" : "upload-pdf" ,
162
- "pull" : "always" ,
163
- "image" : "plugins/s3-sync" ,
164
- "settings" : {
165
- "bucket" : "uploads" ,
166
- "endpoint" : from_secret ("docs_s3_server" ),
167
- "access_key" : from_secret ("docs_s3_access_key" ),
168
- "secret_key" : from_secret ("docs_s3_secret_key" ),
169
- "path_style" : "true" ,
170
- "source" : "pdf_web/" ,
171
- "target" : "/pdf/%s" % environment ,
172
- },
173
- "when" : {
174
- "event" : [
175
- "push" ,
176
- "cron" ,
177
- ],
178
- "branch" : [
179
- pdf_branch ,
180
- ],
181
- },
182
- },
147
+ # we keep uploading pdf for future reenabling
148
+ #{
149
+ # "name": "upload-pdf",
150
+ # "pull": "always",
151
+ # "image": "plugins/s3-sync",
152
+ # "settings": {
153
+ # "bucket": "uploads",
154
+ # "endpoint": from_secret("docs_s3_server"),
155
+ # "access_key": from_secret("docs_s3_access_key"),
156
+ # "secret_key": from_secret("docs_s3_secret_key"),
157
+ # "path_style": "true",
158
+ # "source": "pdf_web/",
159
+ # "target": "/pdf/%s" % environment,
160
+ # },
161
+ # "when": {
162
+ # "event": [
163
+ # "push",
164
+ # "cron",
165
+ # ],
166
+ # "branch": [
167
+ # pdf_branch,
168
+ # ],
169
+ # },
170
+ #},
183
171
{
184
172
"name" : "notify" ,
185
173
"pull" : "if-not-exists" ,
0 commit comments