Skip to content

Commit

Permalink
🏗️ gh-actions: use actions/setup-dotnet
Browse files Browse the repository at this point in the history
  • Loading branch information
database64128 committed Nov 22, 2024
1 parent 0af170c commit 5d5cafc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9'

- name: Restore dependencies
run: dotnet restore

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9'

- name: Restore dependencies
run: dotnet restore

Expand Down

0 comments on commit 5d5cafc

Please sign in to comment.