From a4f71ec98f32d4b3e97a3e1cab8a1171cf25d4e3 Mon Sep 17 00:00:00 2001 From: Vitalii Mikhailov Date: Tue, 14 Nov 2023 12:50:40 +0200 Subject: [PATCH] Update publish-nuget.yml --- .github/workflows/publish-nuget.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-nuget.yml b/.github/workflows/publish-nuget.yml index 4dcb653..0e0021f 100644 --- a/.github/workflows/publish-nuget.yml +++ b/.github/workflows/publish-nuget.yml @@ -23,10 +23,10 @@ jobs: with: fetch-depth: 0 - - name: Setup .NET 7 + - name: Setup .NET 8 uses: actions/setup-dotnet@master with: - dotnet-version: 7.x.x + dotnet-version: 8.x.x - run: dotnet pack -c Release src/BUTR.NativeAOT.Shared -p:VersionOverride=$(git rev-list --no-merges --count master) -o ./packages; - run: dotnet pack -c Release src/BUTR.NativeAOT.Generator -p:VersionOverride=$(git rev-list --no-merges --count master) -o ./packages; @@ -43,4 +43,4 @@ jobs: for f in ./packages/*.nupkg do curl -vX PUT -u "vslee:${{secrets.GITHUB_TOKEN}}" -F package=@$f https://nuget.pkg.github.com/BUTR/ - done \ No newline at end of file + done