mirror of https://github.com/sualko/cloud_bbb
build: fix composer dev install
parent
a772f0086c
commit
de834240dd
|
@ -71,6 +71,9 @@ async function createRelease(appId) {
|
|||
await createNextcloudSignature(appId, filePath);
|
||||
await createGPGSignature(filePath);
|
||||
await createGPGArmorSignature(filePath);
|
||||
|
||||
await execa('yarn', ['composer:install:dev']);
|
||||
console.log('✔ composer dev dependencies installed'.green);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -371,6 +371,9 @@ async function run() {
|
|||
await pull();
|
||||
console.log('✔ pulled latest changes'.green);
|
||||
|
||||
await execa('yarn', ['composer:install:dev']);
|
||||
console.log('✔ composer dev dependencies installed'.green);
|
||||
|
||||
await notAlreadyTagged();
|
||||
console.log('✔ not already tagged'.green);
|
||||
|
||||
|
|
Loading…
Reference in New Issue