Skip to content

Commit 4d60acb

Browse files
Assume codegen renders markdown, not asciidoc (#2664) (#2666)
* Assume codegen renders markdown, not asciidoc * Drop accidental local dev tweak (cherry picked from commit afc8333) Co-authored-by: Josh Mock <joshua.mock@elastic.co>
1 parent 1337d43 commit 4d60acb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.buildkite/make.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ async function codegen (args) {
109109
await $`rm -rf ${join(import.meta.url, '..', 'src', 'api')}`
110110
await $`mkdir ${join(import.meta.url, '..', 'src', 'api')}`
111111
await $`cp -R ${join(import.meta.url, '..', '..', 'elastic-client-generator-js', 'output')}/* ${join(import.meta.url, '..', 'src', 'api')}`
112-
await $`mv ${join(import.meta.url, '..', 'src', 'api', 'reference.asciidoc')} ${join(import.meta.url, '..', 'docs', 'reference.asciidoc')}`
112+
await $`mv ${join(import.meta.url, '..', 'src', 'api', 'reference.md')} ${join(import.meta.url, '..', 'docs', 'reference', 'api-reference.md')}`
113113
await $`npm run build`
114114

115115
// run docs example generation

0 commit comments

Comments
 (0)