update deploy script

This commit is contained in:
Emily
2025-01-30 14:33:54 +01:00
parent 0f39cab26a
commit 8183ae1e68

View File

@@ -30,9 +30,9 @@ async function main() {
console.log('Creating zip file'); console.log('Creating zip file');
const archive = createZip(TMP_PATH + '/' + ZIP_NAME); const archive = createZip(TMP_PATH + '/' + ZIP_NAME);
archive.directory(LOCAL_PATH + '/.output', '/.output'); archive.directory(LOCAL_PATH + '/.output', '/.output');
archive.file(LOCAL_PATH + '/ecosystem.config.js', { name: '/ecosystem.config.js' }) archive.file(LOCAL_PATH + '/ecosystem.config.js', { name: '/ecosystem.config.js' })
// archive.file(LOCAL_PATH + '/.env', { name: '/.env' });
await archive.finalize(); await archive.finalize();
await DeployHelper.connect(); await DeployHelper.connect();