Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
CHKZL committed Jun 23, 2024
1 parent 0bb320f commit 3c1f75f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/DDTV_Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 3c1f75f

Please sign in to comment.