Skip to content

Commit

Permalink
ci: Fix release build (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepansergeevitch authored Feb 5, 2024
1 parent 2b2370f commit 6b942cd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,22 @@ jobs:
git commit -m "Automatic version bump to ${{ steps.tag_generation.outputs.new_version }}"
git push origin main
shell: bash

- name: Publish tag on github
run: |
git tag ${{ steps.tag_generation.outputs.new_version }}
git push origin ${{ steps.tag_generation.outputs.new_version }}
shell: bash

- name: Set up .NET 6.0
id: dotnet-setup
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0

- name: use .NET 6.0
run: |
dotnet new globaljson --sdk-version '${{ steps.dotnet-setup.outputs.dotnet-version }}'
- name: Build package
run: |
Expand Down

0 comments on commit 6b942cd

Please sign in to comment.