Skip to content

Commit

Permalink
Update .NET version and NuGet path in CI files
Browse files Browse the repository at this point in the history
Updated .NET version from 7.0.101 to 9.*.* in Release.yml and build.yml.
Changed NUGET_PATH in Release.yml to use GitHub event release tag name
instead of fixed version 1.0.0 in build.yml.
  • Loading branch information
IeuanWalker committed Nov 19, 2024
1 parent 22caa4c commit bd5bff1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
types: [published]

env:
NET_VERSION: 7.0.101
NET_VERSION: 9.*.*
PROJECT_PATH: 'Scr/Switch/IeuanWalker.Maui.Switch.csproj'
NUGET_PATH: './**/IeuanWalker.Maui.Switch.${{ github.event.release.tag_name }}.nupkg'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- cron: '0 0 1 */3 *' # Every 3 months

env:
NET_VERSION: 7.0.101
NET_VERSION: 9.*.*
PROJECT_PATH: 'Scr/Switch/IeuanWalker.Maui.Switch.csproj'
NUGET_PATH: './**/IeuanWalker.Maui.Switch.1.0.0.nupkg'

Expand Down

0 comments on commit bd5bff1

Please sign in to comment.