Skip to content

Commit 4b54c05

Browse files
authored
Update release.yml (#155)
1 parent 9647524 commit 4b54c05

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/release.yml

+8
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ jobs:
99
publish:
1010
name: Publish Client
1111
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
dotnet-version:
15+
- '9.0.x'
1216
steps:
1317
- name: Wait for tests to succeed
1418
uses: lewagon/wait-on-check-action@v1.3.4
@@ -19,6 +23,10 @@ jobs:
1923
wait-interval: 10
2024
allowed-conclusions: success
2125
- uses: actions/checkout@v4
26+
- name: Setup dotnet ${{ matrix.dotnet-version }}
27+
uses: actions/setup-dotnet@v4
28+
with:
29+
dotnet-version: ${{ matrix.dotnet-version }}
2230
- name: Set VERSION variable from tag
2331
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
2432
- name: Pack

0 commit comments

Comments
 (0)