From 763683a30e38536b53a4f90f2ac8f5763687c1ec Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 8 Jan 2026 19:22:54 +0000 Subject: [PATCH 1/3] Initial plan From a90d5eecfc3a360a443a399bf227de51d62ce5a6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 8 Jan 2026 19:25:09 +0000 Subject: [PATCH 2/3] Fix: Explicitly specify version when installing package in tests Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com> --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 227d8e5..27c88e9 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -101,7 +101,7 @@ jobs: shell: pwsh run: | $nupkg = Get-ChildItem -Path artifacts -Filter "*.nupkg" | Select-Object -First 1 - dotnet tool install --global --add-source artifacts DemaConsulting.WeasyprintTool + dotnet tool install --global --add-source artifacts --version ${{ inputs.version }} DemaConsulting.WeasyprintTool - name: Test Weasyprint Tool shell: pwsh From 1d667ceb1aa06a789fff9165639c56c1c7b9093a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 8 Jan 2026 19:30:25 +0000 Subject: [PATCH 3/3] Simplify install step: remove unused nupkg search and pwsh shell Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com> --- .github/workflows/build.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 27c88e9..512a779 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -98,10 +98,7 @@ jobs: path: artifacts - name: Install Package - shell: pwsh - run: | - $nupkg = Get-ChildItem -Path artifacts -Filter "*.nupkg" | Select-Object -First 1 - dotnet tool install --global --add-source artifacts --version ${{ inputs.version }} DemaConsulting.WeasyprintTool + run: dotnet tool install --global --add-source artifacts --version ${{ inputs.version }} DemaConsulting.WeasyprintTool - name: Test Weasyprint Tool shell: pwsh