I'm trying to make electron-forge deploy built code to github, but it doesn't work, and it doesn't have any errors or anything. my forge.config.js file is ```js
require('dotenv').config()
module.exports = {
packagerConfig: {
},
rebuildConfig: {
},
makers: [
{
name: '@electron-forge/maker-squirrel',
config: {},
}
],
publishers: [
{
name: '@electron-forge/publisher-github',
config: {
repository: {
owner: '<my username>',
name: '<repo name>'
},
prerelease: false,
authToken: process.env.GH_KEY
}
}
],
plugins: [
],
hooks: {
},
buildIdentifier: 'v1.0.2'
}
I've been trying to figure this out, but without any luck so far. I know my config works because I don't have one in package.json and it builds with my settings, just doesn't publish