Skip to content

Commit b52c07f

Browse files
committed
Merge branch 'hotfix/5.0.1'
* hotfix/5.0.1: (#41) Add cake-addin tag (build) Only build specific branches (build) Bump to Cake.Recipe 2.2.1 (build) Pin to Ubuntu 18.04
2 parents 99c3ae7 + a9e9c0d commit b52c07f

File tree

7 files changed

+16
-9
lines changed

7 files changed

+16
-9
lines changed

.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+
- master
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-latest, ubuntu-18.04, macos-latest]
1623

1724
env:
1825
AZURE_PASSWORD: ${{ secrets.AZURE_PASSWORD }}
@@ -67,4 +74,4 @@ jobs:
6774
with:
6875
if-no-files-found: warn
6976
name: package
70-
path: BuildArtifacts/Packages/**/*
77+
path: BuildArtifacts/Packages/**/*

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
jobs:
1818
analyze:
1919
name: Analyze
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-18.04
2121

2222
strategy:
2323
fail-fast: false

.github/workflows/dependabot-cake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
dependabot-cake:
10-
runs-on: ubuntu-latest # linux, because this is a docker-action
10+
runs-on: ubuntu-18.04 # linux, because this is a docker-action
1111
steps:
1212
- name: check/update cake dependencies
1313
uses: nils-org/dependabot-cake-action@v1

.github/workflows/publishDocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111

1212
jobs:
1313
cake:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-18.04
1515

1616
steps:
1717
- name: checkout

.github/workflows/release-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
draft-stable:
88
env:
99
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-18.04
1111

1212
steps:
1313
- name: Checkout the requested branch

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.AppVeyor/Cake.AppVeyor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<Title>Cake.AppVeyor</Title>
1414
<Summary>AppVeyor API's addin for cake build.</Summary>
1515
<Description>Cake Build addin for AppVeyor API's.</Description>
16-
<PackageTags>Cake Script Build</PackageTags>
16+
<PackageTags>cake;script;build;cake-addin</PackageTags>
1717
<Authors>Redth</Authors>
1818
<Owners>Redth</Owners>
1919
<RepositoryUrl>https://github.com/cake-contrib/Cake.AppVeyor.git</RepositoryUrl>

0 commit comments

Comments
 (0)