chore: dont use turbo cache in release script

This commit is contained in:
Miodec 2025-04-30 09:17:45 +02:00
parent 53ca12fbb4
commit 5d4f449000

View file

@ -173,7 +173,9 @@ const buildProject = () => {
filter = "--filter @monkeytype/backend";
}
runProjectRootCommand("npx turbo lint test validate-json build " + filter);
runProjectRootCommand(
"npx turbo lint test validate-json build " + filter + " --force"
);
};
const deployBackend = () => {