Skip to content

Commit 74ea9b2

Browse files
author
Pat
authored
containers: fix up version generation (#1139)
Signed-off-by: Patrick Stephens <pat@calyptia.com>
1 parent d0008e0 commit 74ea9b2

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

installation/docker.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ The following table describes the Linux container tags that are available on Doc
1717

1818
| Tag(s) | Manifest Architectures | Description |
1919
| ------------ | ------------------------- | -------------------------------------------------------------- |
20-
| 2.1.5 | x86_64, arm64v8, arm32v7 | Debug images |
21-
| 2.1.5-debug | x86_64, arm64v8, arm32v7 | Release [v2.1.5](https://fluentbit.io/announcements/v2.1.5/) |
22-
| 2.1.4 | x86_64, arm64v8, arm32v7 | Debug images |
23-
| 2.1.4-debug | x86_64, arm64v8, arm32v7 | Release [v2.1.4](https://fluentbit.io/announcements/v2.1.4/) |
24-
| 2.1.3 | x86_64, arm64v8, arm32v7 | Debug images |
25-
| 2.1.3-debug | x86_64, arm64v8, arm32v7 | Release [v2.1.3](https://fluentbit.io/announcements/v2.1.3/) |
26-
| 2.1.2 | x86_64, arm64v8, arm32v7 | Debug images |
27-
| 2.1.2-debug | x86_64, arm64v8, arm32v7 | Release [v2.1.2](https://fluentbit.io/announcements/v2.1.2/) |
20+
| 2.1.5 | x86_64, arm64v8, arm32v7 | Release [v2.1.5](https://fluentbit.io/announcements/v2.1.5/) |
21+
| 2.1.5-debug | x86_64, arm64v8, arm32v7 | Debug images |
22+
| 2.1.4 | x86_64, arm64v8, arm32v7 | Release [v2.1.4](https://fluentbit.io/announcements/v2.1.4/) |
23+
| 2.1.4-debug | x86_64, arm64v8, arm32v7 | Debug images |
24+
| 2.1.3 | x86_64, arm64v8, arm32v7 | Release [v2.1.3](https://fluentbit.io/announcements/v2.1.3/) |
25+
| 2.1.3-debug | x86_64, arm64v8, arm32v7 | Debug images |
26+
| 2.1.2 | x86_64, arm64v8, arm32v7 | Release [v2.1.2](https://fluentbit.io/announcements/v2.1.2/) |
27+
| 2.1.2-debug | x86_64, arm64v8, arm32v7 | Debug images |
2828
| 2.1.1 | x86\_64, arm64v8, arm32v7 | Release [v2.1.1](https://fluentbit.io/announcements/v2.1.1/) |
2929
| 2.1.1-debug | x86\_64, arm64v8, arm32v7 | v2.1.x releases (production + debug) |
3030
| 2.1.0 | x86\_64, arm64v8, arm32v7 | Release [v2.1.0](https://fluentbit.io/announcements/v2.1.0/) |

update-release-version-docs.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ fi
3232
if grep -q "$NEW_VERSION" "$SCRIPT_DIR"/installation/docker.md; then
3333
echo "Found $NEW_VERSION already in the Docker docs so skipping update"
3434
else
35-
sed_wrapper -i -e "/| -.*$/a | $NEW_VERSION-debug | x86\_64, arm64v8, arm32v7 | Release [v$NEW_VERSION](https://fluentbit.io/announcements/v$NEW_VERSION/) |" "$SCRIPT_DIR"/installation/docker.md
36-
sed_wrapper -i -e "/| -.*$/a | $NEW_VERSION | x86\_64, arm64v8, arm32v7 | Debug images |" "$SCRIPT_DIR"/installation/docker.md
35+
sed_wrapper -i -e "/| -.*$/a | $NEW_VERSION | x86\_64, arm64v8, arm32v7 | Release [v$NEW_VERSION](https://fluentbit.io/announcements/v$NEW_VERSION/) |" "$SCRIPT_DIR"/installation/docker.md
36+
sed_wrapper -i -e "/| -.*$/a | $NEW_VERSION-debug | x86\_64, arm64v8, arm32v7 | Debug images |" "$SCRIPT_DIR"/installation/docker.md
3737
fi
3838

3939
WIN_32_EXE_HASH=${WIN_32_EXE_HASH:?}

0 commit comments

Comments
 (0)