Skip to content

Commit

Permalink
chore: tag fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Aug 22, 2024
1 parent 5f98195 commit 4854126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
if (fullTag.includes('-')) {
const suffixes = fullTag.split('-').slice(1); // Ignore the version part
const firstElements = suffixes.map(suffix => suffix.split('.')[0]);
return `${firstElements.join('-')}`;
return `-${firstElements.join('-')}`;
} else {
return '';
}
Expand Down

0 comments on commit 4854126

Please sign in to comment.