Skip to content

Commit

Permalink
Fix publish script for nightly releases
Browse files Browse the repository at this point in the history
  • Loading branch information
brophdawg11 committed Mar 19, 2024
1 parent 6ad8861 commit 65f01d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function getTaggedVersion() {
*/
function publish(dir, tag) {
let args = ["--access public", `--tag ${tag}`];
if (tag === "experimental") {
if (["experimental", "nightly"].includes(tag)) {
args.push(`--no-git-checks`);
} else {
args.push("--publish-branch release-next");
Expand Down

0 comments on commit 65f01d1

Please sign in to comment.