Skip to content

Commit

Permalink
Merge pull request #504 from COVESA/FixRelease
Browse files Browse the repository at this point in the history
Fix release job
  • Loading branch information
hannesa2 committed Jul 16, 2024
2 parents 04320f6 + a2349ea commit 8a8305c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,20 @@ jobs:
with:
mirror: http://ftp.fau.de/qtproject/
version: 5.15.2
- name: Build ${{ matrix.task }}
- name: Build with CMake ${{ matrix.task }}
run: >
$env:WORKSPACE=$env:GITHUB_WORKSPACE; $env:QTDIR=$env:Qt5_DIR.Replace('/','\');
./build_${{ matrix.task }}_windows_qt5_MSVC.bat
$env:WORKSPACE=$env:GITHUB_WORKSPACE;
$env:QTDIR=$env:Qt5_DIR.Replace('/','\');
$env:CPACK_7Z="true";
$env:CPACK_NSIS="true";
./build_sdk_windows_qt5_MSVC_cmake.bat
- name: Archive artifact
run: >
Compress-Archive -Path .\build\dist -DestinationPath
DLT-Windows-${{ matrix.task }}.zip
- name: Upload DLT artifact
uses: actions/upload-artifact@v4
if: ${{ success() }}
with:
name: DLT-Windows-${{ matrix.task }}
path: DLT-*.zip
Expand Down

0 comments on commit 8a8305c

Please sign in to comment.