From 929cce98560ae952278e27f498ab72240ecc0a04 Mon Sep 17 00:00:00 2001 From: rjindael Date: Wed, 2 Aug 2023 02:17:49 -0700 Subject: [PATCH] feat(ci): add back proper dependency installation --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 889f351..bd51099 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,8 +16,14 @@ jobs: - uses: actions/setup-dotnet@v3 with: dotnet-version: 7.0 - + + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore + + - name: Publish run: dotnet publish --no-self-contained -c ${{ matrix.configuration }} -r win-x64 - name: Upload