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