Skip to content

Commit

Permalink
copyUpdatedManifest only for plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
mnaoumov committed Aug 17, 2024
1 parent 44b9088 commit 543db09
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/bin/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ export async function updateVersion(versionUpdateType: string): Promise<TaskResu
await addUpdatedFilesToGit(newVersion);
await addGitTag(newVersion);
await gitPush();
await copyUpdatedManifest();
if (isObsidianPlugin) {
await copyUpdatedManifest();
}
await publishGitHubRelease(newVersion, isObsidianPlugin);
}
]);
Expand Down

0 comments on commit 543db09

Please sign in to comment.