Skip to content

Commit

Permalink
Updated workflow to latest .NET version
Browse files Browse the repository at this point in the history
  • Loading branch information
tidyui committed Jun 6, 2024
1 parent 579e32b commit c46b99f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish_to_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ on:

jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
name: Publish NuGet Packages
steps:

# Checkout
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

# Setup .NET Core
- name: Setup .NET Core @ Latest
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'
source-url: https://api.nuget.org/v3/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.NugetAuthToken}}
Expand Down

0 comments on commit c46b99f

Please sign in to comment.