Fix extraction path of archive

This commit is contained in:
Joshua M. Boniface
2025-02-17 02:55:34 -05:00
parent 86da79fd9a
commit 4f1458b266

View File

@@ -142,7 +142,8 @@ jobs:
- name: "Extract Jellyfin server archive"
working-directory: ./jellyfin-server-windows
run: |
Expand-Archive 'jellyfin_*-amd64.zip'
New-Item -ItemType Directory -Path jellyfin
Expand-Archive -Path 'jellyfin_*-amd64.zip' -DestinationPath jellyfin -Force
Copy-Item ".\Support Files\LICENSE" -Destination $(Resolve-Path .\jellyfin\jellyfin)
- name: "Add NSSM"