Skip to content

Commit

Permalink
fix for pushing git tags
Browse files Browse the repository at this point in the history
  • Loading branch information
absorbb committed May 2, 2024
1 parent 250a24f commit 70fdf6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/build-scripts/src/commands/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export async function docker(dir: string | undefined, args: DockerArgs): Promise
console.log(`Pushing git tag ${gitTag}...`);
await git.addTag(gitTag);
try {
await git.pushTags([gitTag]);
await git.pushTags("origin", [gitTag]);
} catch (e: any) {
throw new Error(`Failed to push git tag ${gitTag}: ${e.message}`);
}
Expand Down

0 comments on commit 70fdf6a

Please sign in to comment.