Skip to content

Commit

Permalink
Try direct dotnet-version in release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dallasread committed Dec 6, 2024
1 parent 8ade263 commit dc3f428
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
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
Expand Down

0 comments on commit dc3f428

Please sign in to comment.