From 7faff33a4676de83a555da44c24d1470cfd7c2a9 Mon Sep 17 00:00:00 2001 From: Vadim Peretokin Date: Sat, 29 Nov 2025 07:06:50 +0100 Subject: [PATCH] Fix Windows code signing repo condition Changed repository check from Mudlet/Mudlet to Mudlet/bootstrap so Azure login and code signing steps run on this repo. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a41ab3e..0c8afbe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -166,13 +166,13 @@ jobs: - name: (Windows) Login to Azure uses: azure/login@v2 - if: runner.os == 'Windows' && github.actor != 'dependabot[bot]' && github.event_name != 'pull_request' && github.repository == 'Mudlet/Mudlet' + if: runner.os == 'Windows' && github.actor != 'dependabot[bot]' && github.event_name != 'pull_request' && github.repository == 'Mudlet/bootstrap' with: creds: ${{ secrets.AZURE_CREDENTIALS }} - name: Get Azure access token for code signing shell: pwsh - if: runner.os == 'Windows' && github.actor != 'dependabot[bot]' && github.event_name != 'pull_request' && github.repository == 'Mudlet/Mudlet' + if: runner.os == 'Windows' && github.actor != 'dependabot[bot]' && github.event_name != 'pull_request' && github.repository == 'Mudlet/bootstrap' run: | $token = (az account get-access-token --resource https://codesigning.azure.net | ConvertFrom-Json).accessToken "::add-mask::$token"