-
Notifications
You must be signed in to change notification settings - Fork 341
/
publish.js
72 lines (62 loc) · 2.09 KB
/
publish.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* eslint no-console: 0 */
const path = require('path')
const fs = require('fs')
const { config: configEnv } = require('dotenv')
const ChromeStore = require('chrome-webstore-upload')
const signAddon = require('sign-addon').default
const ENV_FILE = 'publish.sh'
const envPath = path.resolve(process.cwd(), ENV_FILE)
if (!fs.existsSync(envPath)) {
console.error('Secret env file is missing; cannot proceed with publish')
process.exit(1)
}
configEnv({ path: envPath })
async function publishChrome() {
try {
const extensionID = process.env.WEBSTORE_EXTENSION_ID
const webStore = ChromeStore({
extensionId: extensionID,
clientId: process.env.WEBSTORE_CLIENT_ID,
clientSecret: process.env.WEBSTORE_CLIENT_SECRET,
refreshToken: process.env.WEBSTORE_REFRESH_TOKEN,
})
const token = await webStore.fetchToken()
await webStore.uploadExisting(
fs.createReadStream('dist/extension.zip'),
token,
)
await webStore.publish('default', token)
} catch (error) {
console.error('Chrome publish error:', error)
}
}
async function publishFF() {
try {
const result = await signAddon({
id: '[email protected]',
xpiPath: 'dist/extension.zip',
version: process.env.npm_package_version,
apiKey: process.env.AMO_API_KEY,
apiSecret: process.env.AMO_API_SECRET,
channel: 'listed',
downloadDir: 'downloaded_amo',
})
if (result.success) {
console.log('The following signed files were downloaded:')
console.log(result.downloadedFiles)
console.log('Your extension ID is:')
console.log(result.id)
} else {
console.error('Your add-on could not be signed!')
console.error('Check the console for details.')
}
} catch (error) {
console.error('FF signing error:', error)
}
}
switch (process.argv[2]) {
case '--ff':
return publishFF()
case '--chrome':
return publishChrome()
}