fix: escape colon in sed command to fix YAML parsing error
Publish Release / build-net9 (push) Failing after 38s Details
Publish Release / build-net10 (push) Failing after 27s Details
Publish Release / release (push) Has been skipped Details

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Filtik 2026-07-02 20:51:00 +02:00
parent 41b704eeb9
commit 5ca1e24144
1 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,8 @@ jobs:
dotnet-version: "10.0.x" dotnet-version: "10.0.x"
- name: Set targetAbi for Jellyfin 12.x - name: Set targetAbi for Jellyfin 12.x
run: sed -i 's/targetAbi:.*/targetAbi: "12.0.0.0"/' build.yaml run: |
sed -i "s/targetAbi:.*/targetAbi: \"12.0.0.0\"/" build.yaml
- name: Build (net10.0 / Jellyfin 12.x) - name: Build (net10.0 / Jellyfin 12.x)
uses: oddstr13/jellyfin-plugin-repository-manager@v1.1.1 uses: oddstr13/jellyfin-plugin-repository-manager@v1.1.1