Skip to content

Commit

Permalink
Update publish-nuget.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragas authored Nov 14, 2023
1 parent 8b62b3d commit a4f71ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
done

0 comments on commit a4f71ec

Please sign in to comment.