mirror of
https://github.com/isledecomp/SIEdit.git
synced 2025-02-17 00:40:42 -05:00
ci: deploy ffmpeg libs
This commit is contained in:
parent
2ddcc18c67
commit
c8059afb89
1 changed files with 7 additions and 4 deletions
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
|
@ -16,6 +16,9 @@ jobs:
|
|||
build:
|
||||
runs-on: windows-latest
|
||||
|
||||
env:
|
||||
FFMPEG_DIR: ffmpeg-n4.4-latest-win64-gpl-shared-4.4
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
@ -31,10 +34,9 @@ jobs:
|
|||
- name: Install FFmpeg
|
||||
shell: bash
|
||||
run: |
|
||||
FILENAME="ffmpeg-n4.4-latest-win64-gpl-shared-4.4"
|
||||
curl -fLOSs https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/$FILENAME.zip
|
||||
7z x $FILENAME.zip
|
||||
echo "$FILENAME" >> $GITHUB_PATH
|
||||
curl -fLOSs https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/$FFMPEG_DIR.zip
|
||||
7z x $FFMPEG_DIR.zip
|
||||
echo "$FFMPEG_DIR" >> $GITHUB_PATH
|
||||
|
||||
- name: Build
|
||||
shell: bash
|
||||
|
@ -48,6 +50,7 @@ jobs:
|
|||
mkdir deploy
|
||||
cp app/*.exe deploy
|
||||
cp lib/*.dll deploy
|
||||
cp $FFMPEG_DIR/bin/*.dll deploy
|
||||
cd deploy
|
||||
windeployqt si-edit.exe libweaver.dll
|
||||
|
||||
|
|
Loading…
Reference in a new issue