From 1adc837d129927d96428e233a3f24492de012303 Mon Sep 17 00:00:00 2001 From: arabcoders Date: Tue, 26 Aug 2025 01:23:41 +0300 Subject: [PATCH] attempt 2 --- .github/workflows/native-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/native-build.yml b/.github/workflows/native-build.yml index 4d470f5d..9fe85274 100644 --- a/.github/workflows/native-build.yml +++ b/.github/workflows/native-build.yml @@ -48,7 +48,7 @@ jobs: ref: ${{ env.TAG_NAME }} - name: Overwrite app.spec from workflow branch - if: github.event.inputs.useWorkflowSpec == true + if: ${{ github.event.inputs.useWorkflowSpec == 'true' }} uses: actions/checkout@v4 with: ref: ${{ github.ref }} @@ -58,7 +58,7 @@ jobs: path: temp-spec - name: Replace app.spec with version from workflow branch - if: github.event.inputs.useWorkflowSpec == true + if: ${{ github.event.inputs.useWorkflowSpec == 'true' }} run: cp temp-spec/app.spec ./app.spec - name: Cache Python venv