4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
@@ -38,7 +38,9 @@ jobs:
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: ghcr.io/${{ github.repository }}:${{ env.VERSION }}
|
||||
tags: |
|
||||
ghcr.io/${{ github.repository }}:${{ env.VERSION }}
|
||||
ghcr.io/${{ github.repository }}:latest
|
||||
|
||||
# Create a release on GitHub
|
||||
- name: Create GitHub Release
|
||||
|
||||
6
.github/workflows/manual-build.yml
vendored
6
.github/workflows/manual-build.yml
vendored
@@ -37,4 +37,8 @@ jobs:
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: ghcr.io/${{ github.repository }}:${{ github.sha }}
|
||||
tags: |
|
||||
ghcr.io/${{ github.repository }}:${{ github.sha }}
|
||||
ghcr.io/${{ github.repository }}:dev
|
||||
|
||||
|
||||
@@ -182,7 +182,8 @@ class JellyfinClient:
|
||||
"""
|
||||
search_url = f'{self.base_url}/Items'
|
||||
params = {
|
||||
'SearchTerm': _clean_query(search_query),
|
||||
'SearchTerm': search_query,
|
||||
|
||||
'IncludeItemTypes': 'Audio', # Search only for audio items
|
||||
'Recursive': 'true', # Search within all folders
|
||||
'Fields': 'Name,Id,Album,Artists,Path' # Retrieve the name and ID of the song
|
||||
|
||||
Reference in New Issue
Block a user