Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 57b124e

Browse files
authoredAug 9, 2024
Merge b717dd7 into 5ab1794
2 parents 5ab1794 + b717dd7 commit 57b124e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎.github/workflows/dotnet-desktop.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,17 @@ jobs:
6363

6464
- name: Create and Push git tag
6565
run: |
66-
git tag v${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
67-
git push origin v${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
66+
git tag ${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
67+
git push origin ${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
6868
6969
- name: Create GitHub Release
7070
id: create_release
7171
uses: actions/create-release@v1
7272
env:
7373
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7474
with:
75-
tag_name: v${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
76-
release_name: "Release v${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}"
75+
tag_name: ${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
76+
release_name: ${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
7777
draft: false
7878
prerelease: false
7979

0 commit comments

Comments
 (0)
Please sign in to comment.