Remove excessive file types for extracted data

This commit is contained in:
Nikolaj Schlej 2023-02-05 22:12:54 -08:00
parent 33c25e8255
commit 180f061bcc
2 changed files with 18 additions and 62 deletions

View file

@ -15,7 +15,6 @@ jobs:
HAS_QT: 1
steps:
- uses: actions/checkout@v3
- name: Get Qt
uses: actions/checkout@v3
with:
@ -190,13 +189,13 @@ jobs:
- name: Configure UEFITool
shell: bash
working-directory: ${{runner.workspace}}/build/UEFITool
run: ../../qt-5.6.3-static-x86-msvc2017/bin/qmake.exe ../../UEFITool/UEFITool/
run: ../../qt-5.6.3-static-x86-msvc2017/bin/qmake.exe -tp vc ../../UEFITool/UEFITool/
- name: Build UEFITool
working-directory: ${{runner.workspace}}/build/UEFITool
shell: cmd
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars32.bat"
nmake release
msbuild -t:Rebuild -p:PlatformToolset=v141_xp;Configuration=Release
- name: Archive UEFITool
working-directory: ${{runner.workspace}}/build/UEFITool/release
shell: bash