From 2f94441a57c226432054100e1f4f01dd547395de Mon Sep 17 00:00:00 2001 From: Stefan Seeland <168659+stesee@users.noreply.github.com> Date: Fri, 3 Jul 2026 16:39:28 +0200 Subject: [PATCH] Fix deployTest workflow condition syntax Corrected the `if` expression in `.github/workflows/dotnet.yml` for the `deployTest` job by removing an extra parenthesis, so the main-branch check evaluates properly. --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 45cebfc..8192031 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -93,7 +93,7 @@ jobs: gh release create ${{env.CURRENT_VERSION}} ./SkiaSharpCompare/bin/Release/*.*nupkg cli-artifacts.zip --generate-notes deployTest: - if: ${{ github.ref == 'refs/heads/main') }} + if: ${{ github.ref == 'refs/heads/main' }} runs-on: ubuntu-latest needs: build steps: