You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ja...@apache.org on 2022/03/07 19:46:31 UTC

[solr] branch main updated: SOLR-15852: Delete docker folder from staging repo before release (#730)

This is an automated email from the ASF dual-hosted git repository.

janhoy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/main by this push:
     new c919fd8  SOLR-15852: Delete docker folder from staging repo before release (#730)
c919fd8 is described below

commit c919fd88449bf8239c60c01ba92625dcdd193940
Author: Jan Høydahl <ja...@users.noreply.github.com>
AuthorDate: Mon Mar 7 20:46:24 2022 +0100

    SOLR-15852: Delete docker folder from staging repo before release (#730)
---
 dev-tools/scripts/releaseWizard.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-tools/scripts/releaseWizard.yaml b/dev-tools/scripts/releaseWizard.yaml
index 7fe6914..4e5d411 100644
--- a/dev-tools/scripts/releaseWizard.yaml
+++ b/dev-tools/scripts/releaseWizard.yaml
@@ -889,7 +889,7 @@ groups:
         tee: true
   - !Todo
     id: rm_staged_mvn
-    title: Delete mvn artifacts from staging repo
+    title: Delete mvn and docker artifacts from staging repo
     vars:
       dist_folder: solr-{{ release_version }}-RC{{ rc_number }}-rev{{ build_rc.git_rev | default("<git_rev>", True) }}
       dist_path: '{{ [dist_file_path, dist_folder] | path_join }}'
@@ -897,10 +897,10 @@ groups:
     commands: !Commands
       root_folder: '{{ git_checkout_folder }}'
       confirm_each_command: false
-      commands_text: This will remove maven artifacts so they do not end up in the Distribution Directory
+      commands_text: This will remove maven and docker artifacts so they do not end up in the Distribution Directory
       commands:
       - !Command
-        cmd: svn rm -m "Delete the solr maven artifacts"  {{ dist_stage_url }}/solr/maven
+        cmd: svn rm -m "Delete the solr maven and docker artifacts"  {{ dist_stage_url }}/solr/maven  {{ dist_stage_url }}/solr/docker
         logfile: svn_rm_mvn_solr.log
         tee: true
   - !Todo