Skip to content

Commit

Permalink
use global.json for CI/CD versions (#343)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb authored Feb 11, 2025
1 parent 2ba425f commit bfd9aac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,14 @@ jobs:
strategy:
matrix:
unit: ['unit-0', 'unit-1']
dotnet-version: ['9.0.x']

steps:
- uses: actions/checkout@v3

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
global-json-file: './global.json'

- name: Set Project Path
id: set-path
Expand Down
6 changes: 6 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"sdk": {
"version": "9.0.100",
"rollForward": "latestFeature"
}
}

0 comments on commit bfd9aac

Please sign in to comment.