Skip to content

Commit f6f10fc

Browse files
committed
Merge branch 'release/3.0.2'
2 parents 0d586e2 + 340db14 commit f6f10fc

5 files changed

Lines changed: 25 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,24 @@ name: Build
22

33
on:
44
push:
5+
branches:
6+
- main
7+
- develop
8+
- "feature/**"
9+
- "release/**"
10+
- "hotfix/**"
11+
tags:
12+
- "*"
513
paths-ignore:
614
- "README.md"
715
pull_request:
816

917
jobs:
1018
build:
1119
runs-on: ${{ matrix.os }}
12-
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
1320
strategy:
1421
matrix:
15-
os: [windows-latest, ubuntu-latest, macos-latest]
22+
os: [ windows-2019, ubuntu-18.04, macos-10.15 ]
1623

1724
steps:
1825
- name: Checkout the repository
@@ -48,7 +55,7 @@ jobs:
4855
4956
- name: Upload Packages
5057
uses: actions/upload-artifact@v2
51-
if: matrix.os == 'windows-latest'
58+
if: runner.os == 'Windows'
5259
with:
5360
if-no-files-found: warn
5461
name: package

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
analyze:
1313
name: Analyze
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-18.04
1515

1616
strategy:
1717
fail-fast: false
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
languages: ${{ matrix.language }}
3434

35-
- run: ./build.ps1
35+
- run: ./build.ps1 --target=DotNetCore-Build
3636
shell: pwsh
3737

3838
- name: Perform CodeQL Analysis

GitReleaseManager.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ create:
88
with `#module nuget:?package=Cake.BuildSystems.Module&version={milestone}`.
99
footer-includes-milestone: true
1010
milestone-replace-text: "{milestone}"
11+
include-sha-section: true
12+
sha-section-heading: "SHA256 Hashes of the release artifacts"
13+
sha-section-line-format: "- `{1}\t{0}`"
1114
export:
1215
include-created-date-in-title: true
1316
created-date-string-format: yyyy-MM-dd
@@ -32,3 +35,11 @@ issue-labels-alias:
3235
- name: security
3336
header: Security
3437
plural: Security
38+
close:
39+
use-issue-comments: true
40+
issue-comment: |-
41+
:tada: This issue has been resolved in version {milestone} :tada:
42+
The release is available on:
43+
- [GitHub Release](https://github.com/{owner}/{repository}/releases/tag/{milestone})
44+
- [NuGet Package](https://www.nuget.org/packages/Cake.BuildSystems.Module/{milestone})
45+
Your **[GitReleaseManager](https://github.com/GitTools/GitReleaseManager)** bot :package::rocket:

recipe.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#load nuget:?package=Cake.Recipe&version=2.2.0
1+
#load nuget:?package=Cake.Recipe&version=2.2.1
22

33
Environment.SetVariableNames();
44

src/Cake.BuildSystems.Module/Cake.BuildSystems.Module.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<Description>This Cake module will introduce a number of features for running in hosted CI build environments to tightly integrate with the host environment/tools.</Description>
1818
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1919
<PackageProjectUrl>https://github.com/cake-contrib/Cake.BuildSystems.Module/</PackageProjectUrl>
20-
<PackageTags>cake, build, ci, tfs, azure devops, azure devops server, myget, teamcity, travisci</PackageTags>
20+
<PackageTags>cake;build;script;cake-build;module;cake-contrib;cake-module;ci;tfs;azure-devops;azure-devops-server;myget;teamcity;travisci</PackageTags>
2121
<RepositoryUrl>https://github.com/cake-contrib/Cake.BuildSystems.Module.git</RepositoryUrl>
2222
<RepositoryType>git</RepositoryType>
2323
<PackageIconUrl>https://cdn.jsdelivr.net/gh/cake-contrib/graphics/png/cake-contrib-medium.png</PackageIconUrl>

0 commit comments

Comments
 (0)