Skip to content

Commit

Permalink
Merge branch 'release/6.0.0'
Browse files Browse the repository at this point in the history
* release/6.0.0: (40 commits)
  (maint) Changed severity on brace formatting
  (maint) Add rule to error on unnecessary usings
  (doc) Add all missing documentation
  (test) Added basic test script
  (maint) Create .git-blame-ignore-revs file
  (maint) Applied StyleCop/EditorConfig suggestions
  (maint) Add StyleCop.Analyzers package
  (maint) Add StyleCop and EditorConfig files
  (build) Bump to latest build image
  (#8) Remove token from AppVeyor file
  All classes should be public (especially AppVeyorClient).
  (maint) Ensure README is shown on nuget.org
  (maint) Correct name of project
  (maint) Add Readme to NuGet Package
  (maint) Fix markdonwlint warnings
  (#49) Add link to GitHub Discussions
  (#50) Remove old icons
  (maint) Add recommended tags to csproj file
  (#87) Update to Cake 2.0.0
  (maint): Bump Cake.Testing from 1.0.0 to 2.2.0
  ...

# Conflicts:
#	src/Cake.AppVeyor.Tests/AppVeyorTests.cs
#	src/Cake.AppVeyor.Tests/Cake.AppVeyor.Tests.csproj
#	src/Cake.AppVeyor.Tests/Keys.cs
  • Loading branch information
gep13 committed Sep 5, 2022
2 parents c814fd1 + 3592c55 commit 93541ae
Show file tree
Hide file tree
Showing 42 changed files with 1,042 additions and 378 deletions.
6 changes: 1 addition & 5 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
environment:
appveyor_api_token:
secure: vJntliZhY34wDY8ERUBFNtDYDykoBArjD23Hq3hfN+0=

#---------------------------------#
# Build Image #
#---------------------------------#
image: Visual Studio 2019
image: Visual Studio 2022

#---------------------------------#
# Build Script #
Expand Down
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#(maint) Applied StyleCop/EditorConfig suggestions
2f9719b9756358c8e5199efb7895ea194ffc0191
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:
WYAM_DEPLOY_REMOTE: ${{ github.event.repository.html_url }}
steps:
- name: Checkout the repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Fetch all tags and branches
run: git fetch --prune --unshallow

- name: Cache Tools
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: tools
key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }}
Expand All @@ -63,14 +63,14 @@ jobs:
cake-bootstrap: true

- name: Upload Issues-Report
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
if-no-files-found: warn
name: issues
path: BuildArtifacts/report.html

- name: Upload Packages
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
if-no-files-found: warn
name: package
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -41,7 +41,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -53,4 +53,4 @@ jobs:
shell: pwsh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-cake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
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
uses: nils-org/dependabot-cake-action@v1.1.0
4 changes: 2 additions & 2 deletions .github/workflows/publishDocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v2.3.4 #https://github.com/actions/checkout
uses: actions/checkout@v3 #https://github.com/actions/checkout
with:
fetch-depth: 0 # GitVersion is somewhat irritated when fetch-depth is "1"....
ref: ${{ github.event.ref }}

- name: Cache Tools
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: tools
key: ${{ runner.os }}-doc-tools-${{ hashFiles('recipe.cake') }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ jobs:

steps:
- name: Checkout the requested branch
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3
- name: Fetch all tags and branches
run: git fetch --prune --unshallow
- name: Cache Tools
uses: actions/cache@v2.1.4
uses: actions/cache@v3
with:
path: tools
key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }}
- name: Set up git version
if: ${{ !contains(github.ref, '/hotfix/') && !contains(github.ref, '/release/') }}
uses: gittools/actions/gitversion/[email protected].9
uses: gittools/actions/gitversion/[email protected].13
with:
versionSpec: "5.x"
- name: Run git version
if: ${{ !contains(github.ref, '/hotfix/') && !contains(github.ref, '/release/') }}
id: gitversion
uses: gittools/actions/gitversion/[email protected].9
uses: gittools/actions/gitversion/[email protected].13
- name: Create release branch ${{ github.event.inputs.version }}
if: ${{ steps.gitversion.outputs.majorMinorPatch }}
run: git switch -c release/${{ steps.gitversion.outputs.majorMinorPatch }}
Expand Down
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Cake.AppVeyor
A set of aliases for http://cakebuild.net to access the AppVeyor API

A set of aliases for <http://cakebuild.net> to access the AppVeyor API

![AppVeyor](https://ci.appveyor.com/api/projects/status/github/cake-contrib/Cake.AppVeyor)

Expand All @@ -11,8 +12,7 @@ You can easily reference Cake.AppVeyor directly in your build script via a cake
#addin nuget:?package=Newtonsoft.Json&version=11.0.2
```

NOTE: It's very important at this point in time to specify the `Newtonsoft.Json` package *and* the version _11.0.2_ for it, as well as the `Refit` package *and* the version _4.6.58_ for it.

NOTE: It's very important at this point in time to specify the `Newtonsoft.Json` package *and* the version *11.0.2* for it, as well as the `Refit` package *and* the version *4.6.58* for it.

## Aliases

Expand All @@ -21,4 +21,11 @@ Please visit the Cake Documentation for a list of available aliases:
[http://cakebuild.net/dsl/appveyor](http://cakebuild.net/dsl/appveyor)

## Apache License 2.0
Apache Cake.Json Copyright 2016. The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/).

Apache Cake.AppVeyor Copyright 2016. The Apache Software Foundation This product includes software developed at [The Apache Software Foundation](http://www.apache.org/).

## Discussion

For questions and to discuss ideas & feature requests, use the [GitHub discussions on the Cake GitHub repository](https://github.com/cake-build/cake/discussions), under the [Extension Q&A](https://github.com/cake-build/cake/discussions/categories/extension-q-a) category.

[![Join in the discussion on the Cake repository](https://img.shields.io/badge/GitHub-Discussions-green?logo=github)](https://github.com/cake-build/cake/discussions)
Binary file removed icon.png
Binary file not shown.
Loading

0 comments on commit 93541ae

Please sign in to comment.