Google Cloud Storage
Publishing your Electron app artifacts to a Google Cloud Storage bucket.
Installation
npm install --save-dev @electron-forge/publisher-gcsUsage
module.exports = {
// ...
publishers: [
{
name: '@electron-forge/publisher-gcs',
config: {
storageOptions: {
// add additional Storage constructor parameters here
projectId: 'my-project-id'
},
bucket: 'my-bucket',
folder: 'custom-folder-name',
public: true
}
}
]
};Output location
Authentication
Last updated
Was this helpful?