Skip to content

Commit dc3f428

Browse files
committed
Try direct dotnet-version in release.yml
1 parent 8ade263 commit dc3f428

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/release.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,20 @@ jobs:
99
publish:
1010
name: Publish Client
1111
runs-on: ubuntu-latest
12-
strategy:
13-
matrix:
14-
dotnet-version:
15-
- '9.0.x'
1612
steps:
1713
- name: Wait for tests to succeed
1814
uses: lewagon/wait-on-check-action@v1.3.4
1915
with:
2016
ref: 'refs/heads/main'
21-
running-workflow-name: Publish Client ${{ matrix.dotnet-version }}
17+
running-workflow-name: Publish Client
2218
repo-token: ${{ secrets.GITHUB_TOKEN }}
2319
wait-interval: 10
2420
allowed-conclusions: success
2521
- uses: actions/checkout@v4
26-
- name: Setup dotnet ${{ matrix.dotnet-version }}
22+
- name: Setup dotnet
2723
uses: actions/setup-dotnet@v4
2824
with:
29-
dotnet-version: ${{ matrix.dotnet-version }}
25+
dotnet-version: '9.0.x'
3026
- name: Set VERSION variable from tag
3127
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
3228
- name: Pack

0 commit comments

Comments
 (0)