From 8bc63a3568104539a0a9ac7317404398610a019e Mon Sep 17 00:00:00 2001 From: "calvin@codingwithcalvin.net" Date: Tue, 30 Dec 2025 15:31:33 -0500 Subject: [PATCH] fix(ci): update release workflow for moved solution - Remove dotnet restore (builds restore individually) - Add artifacts directory creation step --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9fcc5ff..4b0c695 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,8 +37,8 @@ jobs: with: dotnet-version: 8.0.x - - name: Restore dependencies - run: dotnet restore + - name: Create artifacts directory + run: New-Item -ItemType Directory -Force -Path artifacts/packages - name: Build SDK run: dotnet build src/CodingWithCalvin.VsixSdk/CodingWithCalvin.VsixSdk.csproj -c Release -p:Version=${{ steps.version.outputs.VERSION }}