Skip to content

Commit d9b8639

Browse files
committed
fix: the vue repo needs to be cloned even with --release
1 parent 4363ea3 commit d9b8639

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

ecosystem-ci.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,17 @@ cli
2727
const { root, vuePath, workspace } = await setupEnvironment()
2828
const suitesToRun = getSuitesToRun(suites, root)
2929
let vueMajor
30-
if (!options.release) {
31-
await setupVueRepo(options)
30+
31+
// Need to setup the Vue repo to get the package names
32+
await setupVueRepo(options)
33+
34+
if (options.release) {
35+
vueMajor = parseMajorVersion(options.release)
36+
} else {
3237
await buildVue({ verify: options.verify, publish: true })
3338
vueMajor = parseVueMajor(vuePath)
34-
} else {
35-
vueMajor = parseMajorVersion(options.release)
3639
}
40+
3741
const runOptions: RunOptions = {
3842
root,
3943
vuePath,

0 commit comments

Comments
 (0)