diff --git a/.github/workflows/DDTV_Test.yml b/.github/workflows/DDTV_Test.yml index cf1e9c49a..4af6e8da8 100644 --- a/.github/workflows/DDTV_Test.yml +++ b/.github/workflows/DDTV_Test.yml @@ -155,6 +155,18 @@ jobs: mkdir Server\\build_output\\Plugins\\ffmpeg copy Server\\Plugins\\ffmpeg\\ffmpeg.exe Server\\build_output\\Plugins\\ffmpeg\\ffmpeg.exe + - name: Copy VLC (Windows) + if: runner.os == 'Windows' + shell: pwsh + run: | + mkdir Desktop/build_output/Plugins/vlc + + $source = "Desktop/Plugins/vlc/*" + $destination = "Server/build_output/Plugins/vlc" + + New-Item -ItemType Directory -Force -Path $destination + Move-Item -Path $source -Destination $destination + - name: Move all files to bin folder and create shortcut (Linux or macOS) if: runner.os != 'Windows' run: |