From f07287fead292cb826afc5604b5f72cab24eb8c0 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Wed, 4 Feb 2026 18:18:45 -0500 Subject: [PATCH] Add missing libgdiplus install to Nuget build --- .github/workflows/ci-pipeline.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 5941157710..c24679fdb9 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -1956,6 +1956,11 @@ jobs: runs-on: ubuntu-latest if: contains(github.event.head_commit.message, '[NugetDeploy]') steps: + - name: Install Native Dependencies + run: | + sudo apt-get update + sudo apt-get install -y libgdiplus + - name: Setup dotnet uses: actions/setup-dotnet@v4 with: