From 820bf44e99cd7f7deb10b00135817f9f351ad66f Mon Sep 17 00:00:00 2001 From: BDisp Date: Wed, 9 Oct 2024 21:58:22 +0100 Subject: [PATCH] Using pack instead of build. --- .github/workflows/dotnet-core.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 5779ed9da..0b9c14fc3 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -90,8 +90,8 @@ jobs: dotnet-version: 8.x dotnet-quality: 'ga' - - name: Build Release - run: dotnet build --configuration Release + - name: Pack Releae + run: dotnet pack --configuration Release --output ./bin/Release # Note: this step is currently not writing to the gist for some reason