Add Windows Qt deploy step

This commit is contained in:
wheremyfoodat 2023-09-28 02:54:00 +03:00
commit d23a1a6a58

View file

@ -38,11 +38,17 @@ jobs:
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Deploy
run: |
mkdir upload
move build/Release/Alber.exe upload
windeployqt --dir upload upload/Alber.exe
- name: Upload executable
uses: actions/upload-artifact@v2
with:
name: Windows executable
path: './build/Release/Alber.exe'
path: upload
MacOS:
runs-on: macos-latest