From d3192df5c2b4e4d5dac11380fb4722ea0e641656 Mon Sep 17 00:00:00 2001 From: BDisp Date: Wed, 9 Oct 2024 22:10:46 +0100 Subject: [PATCH] Create LocalPackages Directory --- .github/workflows/dotnet-core.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 0b9c14fc3..466427894 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -90,8 +90,17 @@ jobs: dotnet-version: 8.x dotnet-quality: 'ga' - - name: Pack Releae - run: dotnet pack --configuration Release --output ./bin/Release + - name: Create LocalPackages Directory + run: mkdir -p LocalPackages + + - name: Pack Release + run: dotnet pack --configuration Release --output ./LocalPackages + + - name: Restore dependencies + run: dotnet restore --source ./LocalPackages + + - name: Build Release + run: dotnet build --configuration Release # Note: this step is currently not writing to the gist for some reason