ci(release): upload dmg file

This commit is contained in:
George Lima 2019-04-10 13:49:55 -03:00
parent 9a1ff3f68b
commit 15ad61933e
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ const signBinaries = binaries => new Promise((resolve, reject) => {
const files = await fs.readdirSync(DIST_FOLDER);
const binaries = files
.filter(name => name.endsWith('.exe') || name.endsWith('.deb') || name.endsWith('.pkg'))
.filter(name => name.endsWith('.exe') || name.endsWith('.deb') || name.endsWith('dmg'))
.map(bin => ({ path: `${DIST_FOLDER}/${bin}`, name: bin }));
const [, signaturesPath] = await eres(signBinaries(binaries.map(bin => bin.path)));