Skip to content

Commit

Permalink
fix: fix docker compose 8.7 download (#5108)
Browse files Browse the repository at this point in the history
* fix: fix docker compose 8.7 download

* Update src/components/CamundaDistributions/DockerCompose.jsx

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix typo in comment

fix typo in comment

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
hisImminence and github-actions[bot] authored Feb 27, 2025
1 parent b682293 commit 5882ea1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/CamundaDistributions/DockerCompose.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ const getVersion = () => {
const docsVersion = useActiveVersion();
if (docsVersion.label == "Next") return "alpha";
// NOTE: This is a workaround for the irregular release cut of the 8.7 version.
// NOTE: Once the 8.8 docker compose version is released, 8.8 should point to 8.8
// TODO: Remove this condition once the 8.7 is released.
if (docsVersion.label == "8.7") return "alpha";
if (
docsVersion.label == "8.7 (unreleased)" ||
docsVersion.label == "8.8 (unreleased)"
)
return "alpha";
return docsVersion.label;
};

Expand Down

0 comments on commit 5882ea1

Please sign in to comment.