test: GH Action should only try pack-msi if making dist or qt (#4563)
* test: only use pack-ms iff making dist or qt * Update .github/workflows/actions.yml Co-authored-by: Mike Gelfand <mikedld@users.noreply.github.com>
This commit is contained in:
parent
68f6f49c6d
commit
cf8bd14403
|
@ -389,6 +389,7 @@ jobs:
|
||||||
- name: Install
|
- name: Install
|
||||||
run: cmake --build obj --config RelWithDebInfo --target install
|
run: cmake --build obj --config RelWithDebInfo --target install
|
||||||
- name: Package
|
- name: Package
|
||||||
|
if: ${{ needs.what-to-make.outputs.make-dist == 'true' || (needs.what-to-make.outputs.make-daemon == 'true' && needs.what-to-make.outputs.make-qt == 'true') }}
|
||||||
run: |
|
run: |
|
||||||
Import-VisualStudioVars -VisualStudioVersion 2022 -Architecture ${{ matrix.arch }}
|
Import-VisualStudioVars -VisualStudioVersion 2022 -Architecture ${{ matrix.arch }}
|
||||||
cmake --build obj --config RelWithDebInfo --target pack-msi
|
cmake --build obj --config RelWithDebInfo --target pack-msi
|
||||||
|
|
Loading…
Reference in New Issue