Skip to content

Commit 9d9f16f

Browse files
committed
Testing installer signing
1 parent d8d2c05 commit 9d9f16f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-installer-qt5-win32.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Select signing policy
6363
run: |
6464
set SIGNING_POLICY_SLUG=none
65-
if "%ORGANIZATION_ID%"=="" (
65+
if "${{ env.ORGANIZATION_ID }}"=="" (
6666
echo WARNING: ORGANIZATION_ID is not set or empty, skipping signing steps.
6767
) else (
6868
if "${{ github.event_name }}"=="push" (

.github/workflows/build-installer-qt5-win64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Select signing policy
6262
run: |
6363
set SIGNING_POLICY_SLUG=none
64-
if "%ORGANIZATION_ID%"=="" (
64+
if "${{ env.ORGANIZATION_ID }}"=="" (
6565
echo WARNING: ORGANIZATION_ID is not set or empty, skipping signing steps.
6666
) else (
6767
if "${{ github.event_name }}"=="push" (

.github/workflows/build-installer-qt6-win64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Select signing policy
6262
run: |
6363
set SIGNING_POLICY_SLUG=none
64-
if "%ORGANIZATION_ID%"=="" (
64+
if "${{ env.ORGANIZATION_ID }}"=="" (
6565
echo WARNING: ORGANIZATION_ID is not set or empty, skipping signing steps.
6666
) else (
6767
if "${{ github.event_name }}"=="push" (

0 commit comments

Comments
 (0)