We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f69bf83 commit 6f4c479Copy full SHA for 6f4c479
.github/workflows/draft.yaml
@@ -44,4 +44,4 @@ jobs:
44
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45
run: |
46
$VERSION = Get-ChildItem -Path pkg/*.nupkg -Name | Select-String -Pattern '\d+.\d+.\d+' | foreach {$_.Matches.Value}
47
- gh release create -d --generate-notes $VERSION
+ gh release create -d --generate-notes v$VERSION
version.json
@@ -2,7 +2,8 @@
2
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3
"version": "7.1",
4
"publicReleaseRefSpec": [
5
- "^refs/heads/master$"
+ "^refs/heads/master$",
6
+ "^refs/tags/v\\d+\\.\\d+\\.\\d+"
7
],
8
"cloudBuild": {
9
"setVersionVariables": false
0 commit comments