From dc3f428eaf10e6c03cf79fe810567ab54fa7fb69 Mon Sep 17 00:00:00 2001 From: Dallas Read Date: Fri, 6 Dec 2024 14:43:02 -0400 Subject: [PATCH] Try direct dotnet-version in release.yml --- .github/workflows/release.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f165c46..18ac977 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,24 +9,20 @@ jobs: publish: name: Publish Client runs-on: ubuntu-latest - strategy: - matrix: - dotnet-version: - - '9.0.x' steps: - name: Wait for tests to succeed uses: lewagon/wait-on-check-action@v1.3.4 with: ref: 'refs/heads/main' - running-workflow-name: Publish Client ${{ matrix.dotnet-version }} + running-workflow-name: Publish Client repo-token: ${{ secrets.GITHUB_TOKEN }} wait-interval: 10 allowed-conclusions: success - uses: actions/checkout@v4 - - name: Setup dotnet ${{ matrix.dotnet-version }} + - name: Setup dotnet uses: actions/setup-dotnet@v4 with: - dotnet-version: ${{ matrix.dotnet-version }} + dotnet-version: '9.0.x' - name: Set VERSION variable from tag run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV - name: Pack