publish new version

This commit is contained in:
DreamingCodes 2023-05-01 02:05:54 +02:00
parent 92a55b1743
commit 5f81b07455
3 changed files with 10 additions and 3 deletions

2
dist/index.js generated vendored
View File

@ -116,7 +116,7 @@ function buildProject(options) {
'AppImage.tar.gz.sig', 'AppImage.tar.gz.sig',
'deb' 'deb'
]; ];
const windowsExts = ['msi', 'msi.zip', 'msi.zip.sig']; const windowsExts = ['msi', 'msi.zip', 'msi.zip.sig', 'exe', 'nsis.zip', 'nsis.zip.sig'];
const artifactsLookupPattern = `${bundleDir}/*/!(linuxdeploy)*.{${[ const artifactsLookupPattern = `${bundleDir}/*/!(linuxdeploy)*.{${[
...macOSExts, ...macOSExts,
linuxExts, linuxExts,

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -70,7 +70,14 @@ export async function buildProject(options: BuildOptions): Promise<string[]> {
'AppImage.tar.gz.sig', 'AppImage.tar.gz.sig',
'deb' 'deb'
] ]
const windowsExts = ['msi', 'msi.zip', 'msi.zip.sig', 'exe', 'nsis.zip', 'nsis.zip.sig'] const windowsExts = [
'msi',
'msi.zip',
'msi.zip.sig',
'exe',
'nsis.zip',
'nsis.zip.sig'
]
const artifactsLookupPattern = `${bundleDir}/*/!(linuxdeploy)*.{${[ const artifactsLookupPattern = `${bundleDir}/*/!(linuxdeploy)*.{${[
...macOSExts, ...macOSExts,