Skip to content

Commit c8d8cf2

Browse files
committed
[SPARK-54164][INFRA] Add branch-4.1 to daily Publish Snapshot GitHub Action job
### What changes were proposed in this pull request? This PR aims to add `branch-4.1` to daily `Publish Snapshot` GitHub Action job. ### Why are the changes needed? To publish Apache Spark 4.1.0-SNAPSHOT from `branch-4.1`. - https://repository.apache.org/content/groups/snapshots/org/apache/spark/spark-core_2.13/4.1.0-SNAPSHOT/ ### Does this PR introduce _any_ user-facing change? No, this is an infra-only change. ### How was this patch tested? Manual review. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #52860 from dongjoon-hyun/SPARK-54164. Authored-by: Dongjoon Hyun <dongjoon@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
1 parent d8f2f95 commit c8d8cf2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish_snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ on:
2828
description: 'list of branches to publish (JSON)'
2929
required: true
3030
# keep in sync with default value of strategy matrix 'branch'
31-
default: '["master", "branch-4.0", "branch-3.5"]'
31+
default: '["master", "branch-4.1", "branch-4.0", "branch-3.5"]'
3232

3333
jobs:
3434
publish-snapshot:
@@ -38,7 +38,7 @@ jobs:
3838
fail-fast: false
3939
matrix:
4040
# keep in sync with default value of workflow_dispatch input 'branch'
41-
branch: ${{ fromJSON( inputs.branch || '["master", "branch-4.0", "branch-3.5"]' ) }}
41+
branch: ${{ fromJSON( inputs.branch || '["master", "branch-4.1", "branch-4.0", "branch-3.5"]' ) }}
4242
steps:
4343
- name: Checkout Spark repository
4444
uses: actions/checkout@v4

0 commit comments

Comments
 (0)