Skip to content

Commit

Permalink
fix(build) use 'latest' tag rather than 'stable' for publication
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Simeon <[email protected]>
  • Loading branch information
jeromesimeon committed Apr 27, 2021
1 parent c071305 commit d761722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tag.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ if (!semver.valid(targetVersion)) {
}

const prerelease = semver.prerelease(targetVersion);
const tag = prerelease ? 'unstable' : 'stable';
const tag = prerelease ? 'unstable' : 'latest';

console.log(`::set-output name=tag::--tag=${tag}`);

0 comments on commit d761722

Please sign in to comment.