S3
How to publish your distributable Electron app artifacts to Amazon S3
Installation
npm install --save-dev @electron-forge/publisher-s3Usage
module.exports = {
// ...
publishers: [
{
name: '@electron-forge/publisher-s3',
config: {
bucket: 'my-bucket',
public: true
}
}
]
};Authentication
Key management
Auto updating from S3
Last updated
Was this helpful?