1 Commits

Author SHA1 Message Date
6b3629436a disable arm target
All checks were successful
tests / fmt (push) Successful in 1m14s
tests / clippy (push) Successful in 1m14s
tests / pre-commit (push) Successful in 1m14s
tests / build (push) Successful in 1m26s
tests / test (push) Successful in 1m27s
2024-06-18 11:14:42 +02:00
3 changed files with 2 additions and 5 deletions

View File

@@ -5,9 +5,6 @@ on:
branches: branches:
- main - main
paths-ignore:
- 'README.md'
jobs: jobs:
release-image: release-image:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -29,5 +26,6 @@ jobs:
with: with:
platforms: | platforms: |
linux/amd64 linux/amd64
# linux/arm64
push: true push: true
tags: jheuel/ohrwurm:latest tags: jheuel/ohrwurm:latest

View File

@@ -8,7 +8,7 @@
Ohrwurm is a user-friendly bot designed to play music in Discord voice chats. Once added to your server, you can request a song using the command `/play {query}`, where query can be a URL to a YouTube video or playlist, or a simple search term. The bot will fetch the song and start playing it. You can pause the music with `/pause`, resume playback with `/resume`, and stop and clear the queue with `/stop`. If the bot is alone in a voice chat, it will automatically leave, but you can also manually make it leave with the `/leave` command. Ohrwurm is a user-friendly bot designed to play music in Discord voice chats. Once added to your server, you can request a song using the command `/play {query}`, where query can be a URL to a YouTube video or playlist, or a simple search term. The bot will fetch the song and start playing it. You can pause the music with `/pause`, resume playback with `/resume`, and stop and clear the queue with `/stop`. If the bot is alone in a voice chat, it will automatically leave, but you can also manually make it leave with the `/leave` command.
# Deployment # Deployment
To deploy Ohrwurm with Docker, you can use the [provided Docker image](https://hub.docker.com/r/jheuel/ohrwurm): To deploy Ohrwurm with Docker, you can use the [provided Docker](https://hub.docker.com/r/jheuel/ohrwurm) image:
```bash ```bash
docker run -d \ docker run -d \
--name ohrwurm \ --name ohrwurm \

View File

@@ -56,7 +56,6 @@ async fn get_tracks(
if stderr.contains("YouTube said: The playlist does not exist.") { if stderr.contains("YouTube said: The playlist does not exist.") {
return Err("YouTube said: The playlist does not exist.".into()); return Err("YouTube said: The playlist does not exist.".into());
} }
return Err(stderr.into());
} }
return Err("No tracks found".into()); return Err("No tracks found".into());
} }