Skip to content

Commit cfa3f16

Browse files
committed
Merge branch 'master' into develop
* master: (build) Update environment variable (build) Don't use Cli version for dogfooding (build) Make use of new GRM features
2 parents 9bec3f0 + eb72dd1 commit cfa3f16

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
os: [ windows-2022 ]
2121

2222
env:
23-
GITTOOLS_GITHUB_TOKEN: ${{ secrets.GITTOOLS_GITHUB_TOKEN }}
23+
GITTOOLS_GITHUB_TOKEN: ${{ secrets.NUGET_GITHUB_TOKEN }}
2424
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
2525
NUGET_SOURCE: https://api.nuget.org/v3/index.json
2626
CHOCOLATEY_API_KEY: ${{ secrets.CHOCOLATEY_API_KEY }}

GitReleaseManager.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ create:
1919
include-sha-section: true
2020
sha-section-heading: "SHA256 Hashes of the release artifacts"
2121
sha-section-line-format: "- `{1}\t{0}`"
22+
include-contributors: true
2223
close:
2324
use-issue-comments: true
25+
set-due-date: true
2426
issue-comment: |-
2527
:tada: This issue has been resolved in version {milestone} :tada:
2628

recipe.cake

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ BuildParameters.Tasks.DotNetCoreBuildTask.Does((context) =>
3636
{
3737
var buildDir = BuildParameters.Paths.Directories.PublishedApplications;
3838

39-
var grmExecutable = context.GetFiles(buildDir + "/**/*.exe").First();
39+
var grmExecutable = context.GetFiles(buildDir + "/GitReleaseManager.Tool/**/*.exe").First();
4040

41-
context.Information("Registering Built GRM executable...");
41+
context.Information("Registering Built GRM executable... {0}", grmExecutable.FullPath);
4242
context.Tools.RegisterFile(grmExecutable);
4343
});
4444

0 commit comments

Comments
 (0)