GitHub Actions: Upload MSI packages

They are generated by the 'Build' step anyway. Would be useful
to have them uploaded as build artifacts.

Change-Id: Ie5dd6b284e5ba4f4ffeb4e3845e2d74f62ca55e4
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Cristian Adam
2025-01-17 15:50:14 +01:00
parent 015b47678a
commit 0ee5d67291

View File

@@ -717,6 +717,14 @@ jobs:
path: build/build/qtcreator-${{ matrix.config.artifact }}-${{ steps.git.outputs.tag }}.deb
name: qtcreator-${{ matrix.config.artifact }}-${{ steps.git.outputs.tag }}.deb
- name: Upload MSI package
if: runner.os == 'Windows'
uses: actions/upload-artifact@v4
with:
path: build/build/qtcreator-${{ matrix.config.artifact }}-${{ steps.git.outputs.tag }}.msi
name: qtcreator-${{ matrix.config.artifact }}-${{ steps.git.outputs.tag }}.msi
- name: Upload disk image
if: runner.os == 'macOS' && contains(github.ref, 'tags/v')
uses: actions/upload-artifact@v4