This is an automated email from the ASF dual-hosted git repository. damccorm pushed a commit to branch damccorm-patch-1 in repository https://gitbox.apache.org/repos/asf/beam.git
commit fcf67eac96538d562153e3210591456adc13337b Author: Danny McCormick <[email protected]> AuthorDate: Mon Mar 24 12:49:47 2025 -0400 Enforce ordering to avoid svn conflicts --- .github/workflows/build_release_candidate.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build_release_candidate.yml b/.github/workflows/build_release_candidate.yml index 3a31820ae64..9c4205071d5 100644 --- a/.github/workflows/build_release_candidate.yml +++ b/.github/workflows/build_release_candidate.yml @@ -161,6 +161,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 runs-on: ubuntu-22.04 steps: - name: Checkout @@ -417,6 +418,7 @@ jobs: build_and_stage_prism: if: ${{ fromJson(github.event.inputs.STAGE).prism == 'yes'}} + needs: [publish_java_artifacts] # Enforce ordering to avoid svn conflicts runs-on: ubuntu-22.04 steps: - name: Checkout
