Skip to content

Commit

Permalink
Merge branch 'hotfix/5.0.1'
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
gep13 committed Mar 18, 2021
2 parents 99c3ae7 + a9e9c0d commit b52c07f
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,24 @@ name: Build

on:
push:
branches:
- master
- develop
- "feature/**"
- "release/**"
- "hotfix/**"
tags:
- "*"
paths-ignore:
- "README.md"
pull_request:

jobs:
build:
runs-on: ${{ matrix.os }}
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
os: [windows-latest, ubuntu-18.04, macos-latest]

env:
AZURE_PASSWORD: ${{ secrets.AZURE_PASSWORD }}
Expand Down Expand Up @@ -67,4 +74,4 @@ jobs:
with:
if-no-files-found: warn
name: package
path: BuildArtifacts/Packages/**/*
path: BuildArtifacts/Packages/**/*
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-18.04

strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-cake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
dependabot-cake:
runs-on: ubuntu-latest # linux, because this is a docker-action
runs-on: ubuntu-18.04 # linux, because this is a docker-action
steps:
- name: check/update cake dependencies
uses: nils-org/dependabot-cake-action@v1
2 changes: 1 addition & 1 deletion .github/workflows/publishDocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
cake:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04

steps:
- name: checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
draft-stable:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
runs-on: ubuntu-latest
runs-on: ubuntu-18.04

steps:
- name: Checkout the requested branch
Expand Down
2 changes: 1 addition & 1 deletion recipe.cake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#load nuget:?package=Cake.Recipe&version=2.2.0
#load nuget:?package=Cake.Recipe&version=2.2.1

Environment.SetVariableNames();

Expand Down
2 changes: 1 addition & 1 deletion src/Cake.AppVeyor/Cake.AppVeyor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<Title>Cake.AppVeyor</Title>
<Summary>AppVeyor API's addin for cake build.</Summary>
<Description>Cake Build addin for AppVeyor API's.</Description>
<PackageTags>Cake Script Build</PackageTags>
<PackageTags>cake;script;build;cake-addin</PackageTags>
<Authors>Redth</Authors>
<Owners>Redth</Owners>
<RepositoryUrl>https://github.com/cake-contrib/Cake.AppVeyor.git</RepositoryUrl>
Expand Down

0 comments on commit b52c07f

Please sign in to comment.