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

damccorm pushed a commit to branch users/damccorm/reduceOrdering
in repository https://gitbox.apache.org/repos/asf/beam.git

commit ac1f63d328664431f956492430d395143e885572
Author: Danny McCormick <[email protected]>
AuthorDate: Mon Jun 23 16:14:38 2025 -0400

    Reduce issues induced by ordering
---
 .github/workflows/build_release_candidate.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build_release_candidate.yml 
b/.github/workflows/build_release_candidate.yml
index baa1b2ec7bd..332c62420ed 100644
--- a/.github/workflows/build_release_candidate.yml
+++ b/.github/workflows/build_release_candidate.yml
@@ -163,7 +163,7 @@ jobs:
 
   stage_python_artifacts:
     if:  ${{ fromJson(github.event.inputs.STAGE).python_artifacts == 'yes'}}
-    needs: [publish_java_artifacts, build_and_stage_prism] # Enforce ordering 
to avoid svn conflicts
+    needs: [stage_java_source, build_and_stage_prism] # Enforce ordering to 
avoid svn conflicts
     runs-on: ubuntu-22.04
     steps:
       - name: Checkout
@@ -423,7 +423,7 @@ jobs:
 
   build_and_stage_prism:
     if: ${{ fromJson(github.event.inputs.STAGE).prism == 'yes'}}
-    needs: [publish_java_artifacts] # Enforce ordering to avoid svn conflicts
+    needs: [stage_java_source] # Enforce ordering to avoid svn conflicts
     runs-on: ubuntu-22.04
     steps:
       - name: Checkout

Reply via email to