Skip to content

Commit 42bc99b

Browse files
committed
upgrade to antora 3
1 parent 90ea4b8 commit 42bc99b

16 files changed

+1277
-1711
lines changed

.drone.star

+30-42
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ def main(ctx):
1919
deployment_branch = default_branch
2020
pdf_branch = default_branch
2121

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+
2225
return [
2326
checkStarlark(),
2427
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_
8689
{
8790
"name": "docs-deps",
8891
"pull": "always",
89-
"image": "owncloudci/nodejs:16",
92+
"image": "owncloudci/nodejs:18",
9093
"commands": [
9194
"yarn install",
9295
],
9396
},
94-
{
95-
"name": "docs-validate",
96-
"pull": "always",
97-
"image": "owncloudci/nodejs:16",
98-
"commands": [
99-
"yarn validate --fetch",
100-
],
101-
},
10297
{
10398
"name": "docs-build",
10499
"pull": "always",
105-
"image": "owncloudci/nodejs:16",
100+
"image": "owncloudci/nodejs:18",
106101
"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",
116103
],
117104
},
118105
{
@@ -157,29 +144,30 @@ def build(ctx, environment, latest_version, deployment_branch, base_branch, pdf_
157144
],
158145
},
159146
},
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+
#},
183171
{
184172
"name": "notify",
185173
"pull": "if-not-exists",

antora.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ nav:
77

88
asciidoc:
99
attributes:
10+
latest-android-version: {page-component-version} # do not change, this is the value of the version key
11+
previous-android-version: {page-component-version} # do not change, this is the value of the version key

bin/instructions_makepdf.md

-82
This file was deleted.

0 commit comments

Comments
 (0)