Skip to content

Commit 2303172

Browse files
committed
ci: simplify dotnet setup in build-executables.yml by removing matrix strategy
1 parent deccbab commit 2303172

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/build-executables.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ permissions:
1111
jobs:
1212
build-and-release:
1313
runs-on: windows-latest
14-
strategy:
15-
matrix:
16-
dotnet-version: [ '8.x' ]
1714
steps:
1815
# Step 1: Checkout the repository
1916
- name: Checkout repository
@@ -23,8 +20,7 @@ jobs:
2320
- name: Setup dotnet ${{ matrix.dotnet-version }}
2421
uses: actions/setup-dotnet@v3
2522
with:
26-
dotnet-version: ${{ matrix.dotnet-version }}
27-
# cache: true
23+
dotnet-version: '8.x'
2824

2925
# Step 3: Install dependencies
3026
- name: Install dependencies

0 commit comments

Comments
 (0)