Skip to content
This repository was archived by the owner on Jun 6, 2025. It is now read-only.

Commit 4d8a7cf

Browse files
adwk67stackable-botNickLarsenNZ
authored
release-24.11/24.11.1-rc1 (#143)
* release 24.11.1-rc1 Signed-off-by: Andrew Kenworthy <[email protected]> * chore: Generated commit to update templated files since the last template run up to stackabletech/operator-templating@13ec44c (#141) Reference-to: stackabletech/operator-templating@13ec44c (Workflow changes in preparation for release-candidates) * chore: Generated commit to update templated files since the last template run up to stackabletech/operator-templating@2b806e1 (#142) Reference-to: stackabletech/operator-templating@2b806e1 (Set PR-suffix on PRs against release branches) * Update .github/workflows/build.yml Co-authored-by: Nick <[email protected]> --------- Signed-off-by: Andrew Kenworthy <[email protected]> Co-authored-by: Stacky McStackface <[email protected]> Co-authored-by: Nick <[email protected]>
1 parent e328a2a commit 4d8a7cf

File tree

7 files changed

+31
-10
lines changed

7 files changed

+31
-10
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
- "renovate/**"
1515
tags:
1616
- '[0-9][0-9].[0-9]+.[0-9]+'
17+
- '[0-9][0-9].[0-9]+.[0-9]+-rc[0-9]+'
1718
pull_request:
1819
merge_group:
1920
schedule:
@@ -344,9 +345,18 @@ jobs:
344345
with:
345346
crate: cargo-edit
346347
bin: cargo-set-version
347-
- name: Update version if PR
348-
if: ${{ github.event_name == 'pull_request' }}
348+
- name: Update version if PR against main branch
349+
if: ${{ github.event_name == 'pull_request' && github.ref == 'refs/heads/main' }}
349350
run: cargo set-version --offline --workspace 0.0.0-pr${{ github.event.pull_request.number }}
351+
- name: Update version if PR against non-main branch
352+
# For PRs to be merged against a release branch, use the version that has already been set in the calling script.
353+
if: ${{ github.event_name == 'pull_request' && github.ref != 'refs/heads/main' }}
354+
env:
355+
PR_NUMBER: ${{ github.event.pull_request.number }}
356+
run: |
357+
MANIFEST_VERSION=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].version')
358+
PR_VERSION="${MANIFEST_VERSION}-pr${PR_NUMBER}"
359+
cargo set-version --offline --workspace "$PR_VERSION"
350360
351361
# Recreate charts and publish charts and docker image. The "-e" is needed as we want to override the
352362
# default value in the makefile if called from this action, but not otherwise (i.e. when called locally).
@@ -410,9 +420,18 @@ jobs:
410420
with:
411421
crate: cargo-edit
412422
bin: cargo-set-version
413-
- name: Update version if PR
414-
if: ${{ github.event_name == 'pull_request' }}
423+
- name: Update version if PR against main branch
424+
if: ${{ github.event_name == 'pull_request' && github.ref == 'refs/heads/main' }}
415425
run: cargo set-version --offline --workspace 0.0.0-pr${{ github.event.pull_request.number }}
426+
- name: Update version if PR against non-main branch
427+
# For PRs to be merged against a release branch, use the version that has already been set in the calling script.
428+
if: ${{ github.event_name == 'pull_request' && github.ref != 'refs/heads/main' }}
429+
env:
430+
PR_NUMBER: ${{ github.event.pull_request.number }}
431+
run: |
432+
MANIFEST_VERSION=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].version')
433+
PR_VERSION="${MANIFEST_VERSION}-pr${PR_NUMBER}"
434+
cargo set-version --offline --workspace "$PR_VERSION"
416435
- name: Build manifest list
417436
run: |
418437
# Creating manifest list

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [24.11.1-rc1] - 2024-12-06
8+
79
## [24.11.0] - 2024-11-18
810

911
### Added

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.nix

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["rust/operator-binary"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "24.11.0"
6+
version = "24.11.1-rc1"
77
authors = ["Stackable GmbH <[email protected]>"]
88
license = "OSL-3.0"
99
edition = "2021"

deploy/helm/hello-world-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
apiVersion: v2
33
name: hello-world-operator
4-
version: "24.11.0"
5-
appVersion: "24.11.0"
4+
version: "24.11.1-rc1"
5+
appVersion: "24.11.1-rc1"
66
description: The Stackable Operator for Hello World
77
home: https://github.com/stackabletech/hello-world-operator
88
maintainers:

tests/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ releases:
77
description: Integration test
88
products:
99
hello-world:
10-
operatorVersion: 24.11.0
10+
operatorVersion: 24.11.1-rc1

0 commit comments

Comments
 (0)