mirror of
https://github.com/ReVanced/revanced-bots.git
synced 2026-01-11 13:56:15 +00:00
27 lines
910 B
JavaScript
27 lines
910 B
JavaScript
export default {
|
|
plugins:
|
|
process.env.RELEASE_WORKFLOW_STEP === 'publish'
|
|
? [
|
|
[
|
|
'@semantic-release/exec',
|
|
{
|
|
publishCmd: 'bun run scripts/trigger-portainer-webhook.ts',
|
|
},
|
|
],
|
|
]
|
|
: [
|
|
'@codedependant/semantic-release-docker',
|
|
{
|
|
dockerImage: 'revanced-bot-websocket-api',
|
|
dockerRegistry: 'ghcr.io',
|
|
dockerProject: 'revanced',
|
|
dockerContext: '../..',
|
|
dockerPlatform: ['linux/amd64', 'linux/arm64'],
|
|
dockerArgs: {
|
|
GITHUB_ACTOR: null,
|
|
GITHUB_TOKEN: null,
|
|
},
|
|
},
|
|
],
|
|
}
|