File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ localhost/kafka:3.4.1-stackable0.0.0-dev-amd64
47
47
- ` build-cache-username ` (required) <!-- TODO: make the cache optional -->
48
48
- ` build-cache-password ` (required) <!-- TODO: make the cache optional -->
49
49
- ` bake-config-file ` (defaults to ` ./conf.py ` )
50
+ - ` sdp-version ` (defaults to: ` 0.0.0-dev ` )
50
51
51
52
### Outputs
52
53
Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ inputs:
20
20
bake-config-file :
21
21
description : Path to the bake config file, defaults to `./conf.py`
22
22
default : ./conf.py
23
+ sdp-version :
24
+ description : |
25
+ Stackable Data Platform version (eg: `24.7.0`)
26
+ default : 0.0.0-dev
23
27
outputs :
24
28
image-manifest-tag :
25
29
description : |
57
61
BAKE_PRODUCT_VERSION : ${{ inputs.product-version }}
58
62
BAKE_CONFIG_FILE : ${{ inputs.bake-config-file }}
59
63
IMAGE_REPOSITORY : ${{ inputs.product-name }}
64
+ SDP_VERSION : ${{ inputs.sdp-version }}
60
65
shell : bash
61
66
run : |
62
67
set -euo pipefail
65
70
echo "::group::bake"
66
71
bake \
67
72
--product "$IMAGE_REPOSITORY=$BAKE_PRODUCT_VERSION" \
68
- --image-version "0.0.0-dev -${IMAGE_ARCH}" \
73
+ --image-version "${SDP_VERSION} -${IMAGE_ARCH}" \
69
74
--architecture "linux/${IMAGE_ARCH}" \
70
75
--export-tags-file bake-target-tags \
71
76
--configuration "$BAKE_CONFIG_FILE" \
You can’t perform that action at this time.
0 commit comments