diff --git a/dev-docs/ref-guide/publish.adoc b/dev-docs/ref-guide/publish.adoc index d2b1a459f39..e136c1c5f4b 100644 --- a/dev-docs/ref-guide/publish.adoc +++ b/dev-docs/ref-guide/publish.adoc @@ -61,7 +61,7 @@ The HTML files themselves will be in `solr/solr-ref-guide/build/html-site`. Push the Guide directly to production via Subversion `import` from where you built it. [source,bash] -svn -m "Add Ref Guide for Solr 7.7" import /solr/solr-ref-guide/build/html-site https://svn.apache.org/repos/infra/websites/production/lucene/content/solr/guide/7_7 +svn -m "Add Ref Guide for Solr 7.7" import /solr/solr-ref-guide/build/html-site https://svn.apache.org/repos/infra/sites/solr/guide/7_7 Confirm you can browse to Guide manually by going to the new URL. For example: https://solr.apache.org/guide/7_7 @@ -91,7 +91,7 @@ Including the `-PsolrGuideDraft=false` property ensures the DRAFT watermark and . Checkout the directory you need to update from the svn production repo: + [source,bash] -$ svn co https://svn.apache.org/repos/infra/websites/production/lucene/content/solr/guide/ +$ svn co https://svn.apache.org/repos/infra/sites/solr/guide/ + * This command checks out the Guide version directory into a local subdirectory with the same name as the version (such as "7_7"). You can provide a better name locally if you prefer by adding it to the end of the command shown above. * Don't shortcut this and download the whole production website. diff --git a/dev-tools/scripts/releaseWizard.yaml b/dev-tools/scripts/releaseWizard.yaml index 29db1bc0ca5..71966fd005b 100644 --- a/dev-tools/scripts/releaseWizard.yaml +++ b/dev-tools/scripts/releaseWizard.yaml @@ -1060,11 +1060,11 @@ groups: cmd: "{{ gradle_cmd }} documentation -Dversion.release={{ release_version }}" comment: Build documentation - !Command - cmd: svn -m "Add docs, changes and javadocs for Lucene {{ release_version }}" import {{ git_checkout_folder }}/lucene/build/docs https://svn.apache.org/repos/infra/websites/production/lucene/content/core/{{ version }} + cmd: svn -m "Add docs, changes and javadocs for Lucene {{ release_version }}" import {{ git_checkout_folder }}/lucene/build/docs https://svn.apache.org/repos/infra/sites/lucene/core/{{ version }} logfile: add-docs-lucene.log comment: Add docs for Lucene - !Command - cmd: svn -m "Add docs, changes and javadocs for Solr {{ release_version }}" import {{ git_checkout_folder }}/solr/build/docs https://svn.apache.org/repos/infra/websites/production/lucene/content/solr/{{ version }} + cmd: svn -m "Add docs, changes and javadocs for Solr {{ release_version }}" import {{ git_checkout_folder }}/solr/build/docs https://svn.apache.org/repos/infra/sites/solr/docs/{{ version }} logfile: add-docs-solr.log comment: Add docs for Solr - !Todo