Don't build installer

This commit is contained in:
dP
2025-10-18 13:39:21 +05:00
parent e7234543ee
commit 1a4709b51e
2 changed files with 5 additions and 4 deletions

View File

@@ -93,7 +93,8 @@ jobs:
arch: ${{ matrix.host }}
- name: Build (with installer)
if: inputs.is_tag == 'true'
if: ${{ false }} # CM doesn't do installer
# if: inputs.is_tag == 'true'
shell: bash
run: |
mkdir build
@@ -123,7 +124,7 @@ jobs:
AZURE_CODESIGN_PROFILE_NAME: ${{ secrets.AZURE_CODESIGN_PROFILE_NAME }}
- name: Build (without installer)
if: inputs.is_tag != 'true'
# if: inputs.is_tag != 'true' CM always builds without
shell: bash
run: |
mkdir build
@@ -184,7 +185,8 @@ jobs:
echo "::endgroup::"
- name: Sign installer
if: inputs.is_tag == 'true'
if: ${{ false }} # CM doesn't do installer
# if: inputs.is_tag == 'true'
shell: bash
run: |
${GITHUB_WORKSPACE}/os/windows/sign.bat "${GITHUB_WORKSPACE}/build/bundles"

View File

@@ -193,7 +193,6 @@ jobs:
- macos
- windows
# if: ${{ false }}
if: needs.source.outputs.trigger_type == 'new-master' || needs.source.outputs.trigger_type == 'new-tag'
runs-on: ubuntu-20.04