发布者是 Electron Forge 的一种方式,用于获取由 make 命令 生成的构件,并将其发送到某个服务,以便您分发或 用作更新。这可能是您的更新服务器或 S3 存储桶。
make
每个发布者都必须在 Forge 配置的 publishers 部分进行配置,其中包含要运行的平台以及发布者特定的配置。例如
publishers
module.exports = { publishers: [ { name: '@electron-forge/publisher-s3', platforms: ['darwin', 'linux'], config: { bucket: 'my-bucket', folder: 'my/key/prefix' } } ] };
请注意,所有发布者默认发布所有平台,因此,如果您不希望使用该默认值,则只需指定 platforms 键即可。
platforms
上次更新于 3 个月前