@@ -10,17 +10,28 @@ mkdir -p deploy/js
1010
1111cd scripts/md2html
1212mkdir -p history
13- git show c740e950d:MAINTAINERS.md > history/MAINTAINERS_v2.0.md
13+ cat > history/MAINTAINERS_v2.0.md << EOF
14+ ## Active
15+ * Jeremy Whitlock [@whitlockjc](https://github.com/whitlockjc)
16+ * Marsh Gardiner [@earth2marsh](https://github.com/earth2marsh)
17+ * Ron Ratovsky [@webron](https://github.com/webron)
18+ * Tony Tam [@fehguy](https://github.com/fehguy)
19+ EOF
20+ cp history/MAINTAINERS_v2.0.md history/MAINTAINERS_v3.0.0.md
21+ git show c740e95:MAINTAINERS.md > history/MAINTAINERS_v3.0.1.md
22+ git show 3140640:MAINTAINERS.md > history/MAINTAINERS_v3.0.2.md
23+ cp history/MAINTAINERS_v3.0.2.md history/MAINTAINERS_v3.0.3.md
24+ cp history/MAINTAINERS_v3.0.2.md history/MAINTAINERS_v3.1.0.md
25+ # add lines for 3.0.4, 3.1.1, ...
26+
1427cp -p js/* ../../deploy/js 2> /dev/null
1528cp -p markdown/* ../../deploy/ 2> /dev/null
1629
17- node md2html.js --respec --maintainers ./history/MAINTAINERS_v2.0.md ../../versions/2.0.md > ../../deploy/oas/v2.0.html
18-
1930latest=` git describe --abbrev=0 --tags`
2031latestCopied=none
21- for filename in ../../versions/[3456789 ].* .md ; do
32+ for filename in ../../versions/[23456789 ].* .md ; do
2233 version=$( basename " $filename " .md)
23- node md2html.js --respec --maintainers ../../MAINTAINERS .md ${filename} > ../../deploy/oas/v$version .html
34+ node md2html.js --respec --maintainers ./history/MAINTAINERS_v $version .md ${filename} > ../../deploy/oas/v$version .html
2435 if [ $version = $latest ]; then
2536 if [[ ${version} != * " rc" * ]]; then
2637 # version is not a Release Candidate
0 commit comments