From 467a34749a30aac42eb40ebbe18c84d9688494c7 Mon Sep 17 00:00:00 2001 From: Vinnie Fialok Date: Wed, 3 Jul 2024 11:36:03 +1000 Subject: [PATCH] attempting to build first --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 80fc06fe..70de59a8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,6 +36,12 @@ jobs: 6.0.x 3.1.x + - name: Install dependencies + run: dotnet restore + + - name: Build + run: dotnet build --configuration Release + - name: Create NuGet Packages run: dotnet pack --configuration Release /p:CommitID=${{ github.sha }} /p:TagVersion=${{ steps.tag_name.outputs.result }}