Skip to content

Commit

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

Please sign in to comment.