Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
fix(build) Switch to latest in publish script
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Simeon <jeromesimeon@me.com>
  • Loading branch information
jeromesimeon committed Apr 27, 2021
1 parent 6450748 commit 738fda9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tag.js
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 738fda9

Please sign in to comment.