Skip to content

Commit

Permalink
Merge pull request #30400 from storybookjs/yann/add-tag-to-registry-c…
Browse files Browse the repository at this point in the history
…ommand

Build: Fix missing tag in registry command
  • Loading branch information
yannbf authored Jan 28, 2025
2 parents 8ae89e5 + 3183d67 commit c6b8ca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run-registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const publish = async (packages: { name: string; location: string }[], url: stri
const command = `cd ${resolvePath(
'../code',
location
)} && yarn pack --out=${PACKS_DIRECTORY}/${tarballFilename} && cd ${PACKS_DIRECTORY} && npm publish ./${tarballFilename} --registry ${url} --force --ignore-scripts`;
)} && yarn pack --out=${PACKS_DIRECTORY}/${tarballFilename} && cd ${PACKS_DIRECTORY} && npm publish ./${tarballFilename} --registry ${url} --force --tag="xyz" --ignore-scripts`;
exec(command, (e) => {
if (e) {
rej(e);
Expand Down

0 comments on commit c6b8ca7

Please sign in to comment.