Created
January 12, 2022 12:01
-
-
Save layerssss/5d7b69c0f8c6e54e8b501e6e0fe36186 to your computer and use it in GitHub Desktop.
This publisher copies files to publish/ folder, to be rsync/upload-ed to any generic HTTP(s) server.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// build/electron-publisher-custom.js | |
// | |
// This publisher copies files to publish/ folder, to be rsync/upload-ed to any generic HTTP(s) server. | |
// | |
// package.json: | |
// | |
// "publish": { | |
// "provider": "custom" | |
// } | |
// | |
// main process: | |
// | |
// autoUpdater.setFeedURL("https://example.com/path/published"); | |
// autoUpdater.checkForUpdatesAndNotify(); | |
const { Publisher } = require("electron-publish"); | |
const fsPromises = require("fs/promises"); | |
const path = require("path"); | |
module.exports = class CustomPublisher extends Publisher { | |
// more about task: | |
// https://github.com/electron-userland/electron-builder/blob/a94532164709a545c0f6551fdc336dbc5377bda8/packages/electron-publish/src/publisher.ts#L29 | |
async upload(task) { | |
const filename = path.basename(task.file); | |
await fsPromises.cp( | |
task.file, | |
path.join(__dirname, "../publish", filename) | |
); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment