File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 20
20
os : [ windows-2022 ]
21
21
22
22
env :
23
- GITTOOLS_GITHUB_TOKEN : ${{ secrets.GITTOOLS_GITHUB_TOKEN }}
23
+ GITTOOLS_GITHUB_TOKEN : ${{ secrets.NUGET_GITHUB_TOKEN }}
24
24
NUGET_API_KEY : ${{ secrets.NUGET_API_KEY }}
25
25
NUGET_SOURCE : https://api.nuget.org/v3/index.json
26
26
CHOCOLATEY_API_KEY : ${{ secrets.CHOCOLATEY_API_KEY }}
Original file line number Diff line number Diff line change @@ -19,8 +19,10 @@ create:
19
19
include-sha-section : true
20
20
sha-section-heading : " SHA256 Hashes of the release artifacts"
21
21
sha-section-line-format : " - `{1}\t {0}`"
22
+ include-contributors : true
22
23
close :
23
24
use-issue-comments : true
25
+ set-due-date : true
24
26
issue-comment : |-
25
27
:tada: This issue has been resolved in version {milestone} :tada:
26
28
Original file line number Diff line number Diff line change @@ -36,9 +36,9 @@ BuildParameters.Tasks.DotNetCoreBuildTask.Does((context) =>
36
36
{
37
37
var buildDir = BuildParameters . Paths . Directories . PublishedApplications ;
38
38
39
- var grmExecutable = context . GetFiles ( buildDir + "/**/*.exe" ) . First ( ) ;
39
+ var grmExecutable = context . GetFiles ( buildDir + "/GitReleaseManager.Tool/ **/*.exe" ) . First ( ) ;
40
40
41
- context . Information ( "Registering Built GRM executable..." ) ;
41
+ context . Information ( "Registering Built GRM executable... {0}" , grmExecutable . FullPath ) ;
42
42
context . Tools . RegisterFile ( grmExecutable ) ;
43
43
} ) ;
44
44
You can’t perform that action at this time.
0 commit comments