From ee9c8f210d202b8fa48351cd7effaedb314985a6 Mon Sep 17 00:00:00 2001 From: Vitalii Mikhailov Date: Sat, 25 May 2024 18:41:06 +0300 Subject: [PATCH] Fix --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 02cee7e..daf5ccf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,11 +22,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@master + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@v4 with: dotnet-version: | 6.x.x @@ -35,12 +35,12 @@ jobs: - name: Build run: >- - dotnet build src/NexusUploader.sln --configuration Release; + dotnet build src/BUTR.NexusUploader.sln --configuration Release; shell: pwsh - name: Pack run: >- - dotnet pack src/NexusUploader.sln --configuration Release -o "./packages"; + dotnet pack src/BUTR.NexusUploader.sln --configuration Release -o "./packages"; shell: pwsh - name: Push to NuGet