build: fix composer dev install

pull/63/head
sualko 2020-06-15 13:27:57 +02:00
parent a772f0086c
commit de834240dd
2 changed files with 6 additions and 0 deletions

View File

@ -71,6 +71,9 @@ async function createRelease(appId) {
await createNextcloudSignature(appId, filePath); await createNextcloudSignature(appId, filePath);
await createGPGSignature(filePath); await createGPGSignature(filePath);
await createGPGArmorSignature(filePath); await createGPGArmorSignature(filePath);
await execa('yarn', ['composer:install:dev']);
console.log('✔ composer dev dependencies installed'.green);
} }

View File

@ -371,6 +371,9 @@ async function run() {
await pull(); await pull();
console.log('✔ pulled latest changes'.green); console.log('✔ pulled latest changes'.green);
await execa('yarn', ['composer:install:dev']);
console.log('✔ composer dev dependencies installed'.green);
await notAlreadyTagged(); await notAlreadyTagged();
console.log('✔ not already tagged'.green); console.log('✔ not already tagged'.green);