Skip to content

Commit ad6ba0d

Browse files
committed
[SPARK-52664] Add branch-0.4 to publish_snapshot_*.yml GitHub Action jobs
### What changes were proposed in this pull request? This PR aims to add `branch-0.4` to `publish_snapshot_*.yml` GitHub Action jobs. ### Why are the changes needed? To publish the latest snapshots (0.5.0-SNAPSHOT and 0.4.1-SNAPSHOT) instead of old 0.1.1-SNAPSHOT and 0.2.1-SNAPSHOT. - https://github.com/apache/spark-kubernetes-operator/tree/branch-0.4 ### Does this PR introduce _any_ user-facing change? No, this is an infra change. ### How was this patch tested? Since this is a daily job, this should be tested after merging into `main` branch. ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#274 from dongjoon-hyun/SPARK-52664. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 45048fd commit ad6ba0d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish_snapshot_chart.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
description: 'list of branches to publish (JSON)'
1111
required: true
1212
# keep in sync with default value of strategy matrix 'branch'
13-
default: '["main", "branch-0.1", "branch-0.2"]'
13+
default: '["main", "branch-0.4"]'
1414

1515
jobs:
1616
publish-snapshot-chart:
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
# keep in sync with default value of workflow_dispatch input 'branch'
23-
branch: ${{ fromJSON( inputs.branch || '["main", "branch-0.1", "branch-0.2"]' ) }}
23+
branch: ${{ fromJSON( inputs.branch || '["main", "branch-0.4"]' ) }}
2424
steps:
2525
- name: Checkout repository
2626
uses: actions/checkout@v4

.github/workflows/publish_snapshot_dockerhub.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
description: 'list of branches to publish (JSON)'
1111
required: true
1212
# keep in sync with default value of strategy matrix 'branch'
13-
default: '["main", "branch-0.1", "branch-0.2"]'
13+
default: '["main", "branch-0.4"]'
1414

1515
jobs:
1616
publish-snapshot-image:
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
# keep in sync with default value of workflow_dispatch input 'branch'
23-
branch: ${{ fromJSON( inputs.branch || '["main", "branch-0.1", "branch-0.2"]' ) }}
23+
branch: ${{ fromJSON( inputs.branch || '["main", "branch-0.4"]' ) }}
2424
steps:
2525
- name: Set up QEMU
2626
uses: docker/setup-qemu-action@v3

0 commit comments

Comments
 (0)