fix: escape colon in sed command to fix YAML parsing error
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
41b704eeb9
commit
5ca1e24144
|
|
@ -36,7 +36,8 @@ jobs:
|
|||
dotnet-version: "10.0.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)
|
||||
uses: oddstr13/jellyfin-plugin-repository-manager@v1.1.1
|
||||
|
|
|
|||
Loading…
Reference in New Issue