Add CI step to generate installer

This commit is contained in:
Dan Paulat 2024-03-15 23:54:36 -05:00
parent 9b222e670f
commit 41f449dc1e

View file

@ -195,6 +195,20 @@ jobs:
${{ github.workspace }}/build/bin/*.debug ${{ github.workspace }}/build/bin/*.debug
${{ github.workspace }}/build/lib/*.debug ${{ github.workspace }}/build/lib/*.debug
- name: Build Installer (Windows)
if: matrix.os == 'windows-2022'
shell: pwsh
run: |
cd build
cpack
- name: Upload Installer (Windows)
if: matrix.os == 'windows-2022'
uses: actions/upload-artifact@v4
with:
name: supercell-wx-installer-${{ matrix.artifact_suffix }}
path: ${{ github.workspace }}/build/supercell-wx-*.msi*
- name: Build AppImage (Linux) - name: Build AppImage (Linux)
if: matrix.os == 'ubuntu-22.04' if: matrix.os == 'ubuntu-22.04'
env: env: