ci: Publish Docker images (#41)

Co-authored-by: PalmDevs <git@palmdevs.me>
This commit is contained in:
oSumAtrIX
2024-07-13 14:57:29 +02:00
committed by GitHub
parent 09dc70632d
commit 5aeade122b
12 changed files with 257 additions and 1 deletions

21
apis/websocket/.releaserc Normal file
View File

@@ -0,0 +1,21 @@
{
"plugins": [
[
"@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
}
}
]
]
}