We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eae32b commit 96de8ddCopy full SHA for 96de8dd
1 file changed
.github/workflows/dotnet-desktop.yml
@@ -3,7 +3,7 @@ name: Build and Release .NET Desktop Console App
3
on:
4
push:
5
tags:
6
- - '*'
+ - 'v*'
7
jobs:
8
build:
9
permissions: write-all
@@ -36,8 +36,8 @@ jobs:
36
env:
37
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
38
with:
39
- tag_name: ${{ github.ref}}.${{matrix.ChannelName}}.${{ matrix.targetplatform }}
40
- release_name: ${{ github.ref }}.${{ matrix.ChannelName }}.${{ matrix.targetplatform }}
+ tag_name: ${{ github.ref }}
+ release_name: Release ${{ github.ref }}
41
draft: false
42
prerelease: false
43
0 commit comments