Skip to content

Commit

Permalink
Server: rename beta to latest-beta tag
Browse files Browse the repository at this point in the history
  • Loading branch information
redrathnure committed Jan 9, 2025
1 parent 820263c commit aa266fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tools/buildServerDocker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ async function main() {
const dockerTags: string[] = [];
const versionParts = imageVersion.split('.');
const patchVersionPart = versionParts[2].split('-')[0];
dockerTags.push(isPreRelease ? 'beta' : 'latest');
dockerTags.push(isPreRelease ? 'latest-beta' : 'latest');
dockerTags.push(versionParts[0] + (isPreRelease ? '-beta' : ''));
dockerTags.push(`${versionParts[0]}.${versionParts[1]}${isPreRelease ? '-beta' : ''}`);
dockerTags.push(`${versionParts[0]}.${versionParts[1]}.${patchVersionPart}${isPreRelease ? '-beta' : ''}`);
Expand Down

0 comments on commit aa266fa

Please sign in to comment.