update readme #2

Merged
dragonchaser merged 4 commits from add-readme into main 2022-07-18 15:53:37 +02:00
2 changed files with 9 additions and 10 deletions

View File

@@ -2,8 +2,8 @@ def main(ctx):
return [ return [
stepPR("amd64", "weirdradio"), stepPR("amd64", "weirdradio"),
stepPR("arm64", "weirdradio"), stepPR("arm64", "weirdradio"),
stepMergeMaster("amd64", "weirdradio"), stepMergeMain("amd64", "weirdradio"),
stepMergeMaster("arm64", "weirdradio"), stepMergeMain("arm64", "weirdradio"),
stepBuildWeekly("amd64", "weirdradio"), stepBuildWeekly("amd64", "weirdradio"),
stepBuildWeekly("arm64", "weirdradio"), stepBuildWeekly("arm64", "weirdradio"),
@@ -51,7 +51,7 @@ def notify(ctx):
], ],
"trigger": { "trigger": {
"ref": [ "ref": [
"refs/heads/master", "refs/heads/main",
"refs/heads/release*", "refs/heads/release*",
"refs/tags/**", "refs/tags/**",
"refs/pull/**", "refs/pull/**",
@@ -95,7 +95,7 @@ def stepPR(arch, path):
}, },
} }
def stepMergeMaster(arch, path): def stepMergeMain(arch, path):
return { return {
"kind": "pipeline", "kind": "pipeline",
"type": "docker", "type": "docker",
@@ -124,7 +124,7 @@ def stepMergeMaster(arch, path):
], ],
"trigger": { "trigger": {
"ref": [ "ref": [
"refs/heads/master", "refs/heads/main",
], ],
"status": [ "status": [
"success", "success",
@@ -162,7 +162,7 @@ def stepBuildWeekly(arch, path):
], ],
"trigger": { "trigger": {
"ref": [ "ref": [
"refs/heads/master", "refs/heads/main",
], ],
"event": [ "event": [
"cron" "cron"

View File

@@ -1,6 +1,5 @@
[![Build Status](https://drone.services.datenschmutz.space/api/badges/dragonchaser/weirdradio/status.svg)](https://drone.services.datenschmutz.space/dr [![Build Status](https://drone.services.datenschmutz.space/api/badges/dragonchaser/weirdradio/status.svg)](https://drone.services.datenschmutz.space/dragonchaser/weirdradio)
# Weirdradio # Weirdradio
Weirdradio is a matrix bot that will queue youtube videos into a webfrontend for listening. Weirdradio is a matrix bot that will queue youtube videos into a webfrontend for listening.
@@ -15,8 +14,8 @@ MIT see [LICENSE](https://github.com/dragonchaser/matrix-feeder/blob/master/LICE
## Run ## Run
``` ```
docker build . -t local/weirdradio:latest $> docker build . -t local/weirdradio:latest
docker run -it \ $> docker run -it \
-p8090:8090 \ -p8090:8090 \
-p8080:8080 \ -p8080:8080 \
-v $(pwd)/config:/weirdradio/config \ -v $(pwd)/config:/weirdradio/config \