Skip to content

Commit 32bfe18

Browse files
committed
Update deploy-if-needed script
1 parent 836c36d commit 32bfe18

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/ci-test/deploy-if-needed.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ interface DeployOptions {
3030
token: string;
3131
cwd: string;
3232
only?: string;
33+
force: boolean;
3334
}
3435

3536
/**
@@ -67,7 +68,8 @@ async function deployIfNeeded() {
6768
const deployOptions: DeployOptions = {
6869
project: config.projectId,
6970
token,
70-
cwd: resolve(root, 'config')
71+
cwd: resolve(root, 'config'),
72+
force: true
7173
};
7274
if (flags.length === 0) {
7375
console.log(

0 commit comments

Comments
 (0)