This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/spark-kubernetes-operator.git
The following commit(s) were added to refs/heads/main by this push:
new ad6ba0d [SPARK-52664] Add `branch-0.4` to `publish_snapshot_*.yml`
GitHub Action jobs
ad6ba0d is described below
commit ad6ba0dbda009929fa79d9b8fcb2e582ce106336
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Wed Jul 2 20:51:48 2025 -0700
[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 #274 from dongjoon-hyun/SPARK-52664.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/publish_snapshot_chart.yml | 4 ++--
.github/workflows/publish_snapshot_dockerhub.yml | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/publish_snapshot_chart.yml
b/.github/workflows/publish_snapshot_chart.yml
index 1fea488..83a500e 100644
--- a/.github/workflows/publish_snapshot_chart.yml
+++ b/.github/workflows/publish_snapshot_chart.yml
@@ -10,7 +10,7 @@ on:
description: 'list of branches to publish (JSON)'
required: true
# keep in sync with default value of strategy matrix 'branch'
- default: '["main", "branch-0.1", "branch-0.2"]'
+ default: '["main", "branch-0.4"]'
jobs:
publish-snapshot-chart:
@@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
# keep in sync with default value of workflow_dispatch input 'branch'
- branch: ${{ fromJSON( inputs.branch || '["main", "branch-0.1",
"branch-0.2"]' ) }}
+ branch: ${{ fromJSON( inputs.branch || '["main", "branch-0.4"]' ) }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
diff --git a/.github/workflows/publish_snapshot_dockerhub.yml
b/.github/workflows/publish_snapshot_dockerhub.yml
index 4878114..1e52589 100644
--- a/.github/workflows/publish_snapshot_dockerhub.yml
+++ b/.github/workflows/publish_snapshot_dockerhub.yml
@@ -10,7 +10,7 @@ on:
description: 'list of branches to publish (JSON)'
required: true
# keep in sync with default value of strategy matrix 'branch'
- default: '["main", "branch-0.1", "branch-0.2"]'
+ default: '["main", "branch-0.4"]'
jobs:
publish-snapshot-image:
@@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
# keep in sync with default value of workflow_dispatch input 'branch'
- branch: ${{ fromJSON( inputs.branch || '["main", "branch-0.1",
"branch-0.2"]' ) }}
+ branch: ${{ fromJSON( inputs.branch || '["main", "branch-0.4"]' ) }}
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]