You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-exec sed -i -E "s/(stackableRelease:\s+)(\S+)/\1${STACKABLE_RELEASE}/" {} \; \
38
54
| prepend "\t"
55
+
maybe_commit "chore(release): $MESSAGE"
39
56
40
57
# TODO (@NickLarsenNZ): Replace 0.0.0-dev refs with ${STACKABLE_RELEASE}.0
41
58
# handle patches later, and what about release-candidates?
42
59
SEARCH='stackable(0\.0\.0-dev|24\.7\.[0-9]+)'# TODO (@NickLarsenNZ): After https://github.com/stackabletech/stackable-cockpit/issues/310, only search for 0.0.0-dev
43
60
REPLACEMENT="stackable${STACKABLE_RELEASE}.0"# TODO (@NickLarsenNZ): Be a bit smarter about patch releases.
44
-
echo"Updating image references. Searching for $SEARCH, replacing with $REPLACEMENT"
61
+
MESSAGE="Update image references with $REPLACEMENT"
62
+
echo"$MESSAGE"
45
63
find demos stacks -type f \
46
64
-exec grep --color=always -lE "$SEARCH" {} \; \
47
65
-exec sed -i -E "s/${SEARCH}/${REPLACEMENT}/" {} \; \
48
66
| prepend "\t"
67
+
maybe_commit "chore(release): $MESSAGE"
49
68
50
69
# Look for remaining references
51
70
echo"Checking files with older stackable release references which will be assumed to be intentional."
0 commit comments