-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/0.12.0: (181 commits) (build) Fix unit tests Bump ApprovalTests from 5.4.7 to 5.5.0 in /src (#379) Validate old config file do not exist (#377) Add UploadUrl property to release model (#373) Ensure that release is located correctly (#374) Remove case sensitive search (#371) Add missing AutoMapper maps (#372) Always register TemplateRepository (build) Remove error action preference from build script Bump YamlDotNet from 11.0.1 to 11.1.1 in /src (#112) Updated docs with new command option (#112) Add new method for creating empty release (#113) Update unit tests for new functionality (#113) Collect all invalid issues together (#99) Fix unit tests (#99) Add SkipPrereleases option (#285) Fix editorconfig violations (maint) Run dotnet format (#143) Only build on Windows for time being (#143) Try running just Mac and Windows ...
Showing
223 changed files
with
7,175 additions
and
3,416 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"cake.tool": { | ||
"version": "0.38.5", | ||
"commands": [ | ||
"dotnet-cake" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: nuget | ||
directory: "/src" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
- "feature/**" | ||
- "release/**" | ||
- "hotfix/**" | ||
tags: | ||
- "*" | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ windows-2019 ] | ||
|
||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Fetch all tags and branches | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Cache Tools | ||
uses: actions/cache@v2 | ||
with: | ||
path: tools | ||
key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }} | ||
|
||
- name: Build project | ||
uses: cake-build/cake-action@v1 | ||
with: | ||
script-path: recipe.cake | ||
target: CI | ||
verbosity: Normal | ||
cake-version: 0.38.5 | ||
cake-bootstrap: true | ||
|
||
- name: Upload Issues-Report | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
if-no-files-found: warn | ||
name: ${{ matrix.os }} issues | ||
path: BuildArtifacts/report.html | ||
|
||
- name: Upload Packages | ||
uses: actions/upload-artifact@v2 | ||
if: runner.os == 'Windows' | ||
with: | ||
if-no-files-found: warn | ||
name: package | ||
path: BuildArtifacts/Packages/**/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -327,3 +327,4 @@ config.wyam.packages.xml | |
# Integration Tests | ||
tests/integration/tools | ||
tests/integration/output | ||
*.g.cs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
{ | ||
"editor.rulers": [80], | ||
"cSpell.words": [ | ||
"Usings", | ||
"addasset", | ||
"buildartifacts", | ||
"choco", | ||
"gitreleasemanager", | ||
"nupkg", | ||
"psake", | ||
"readonly", | ||
"releasenotes", | ||
"showconfig" | ||
] | ||
], | ||
"omnisharp.enableEditorConfigSupport": true, | ||
"omnisharp.enableRoslynAnalyzers": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.