Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
devlead committed Jan 14, 2021
0 parents commit abcee25
Show file tree
Hide file tree
Showing 21 changed files with 892 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"cake.tool": {
"version": "1.0.0-rc0002",
"commands": [
"dotnet-cake"
]
}
}
}
44 changes: 44 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build
on:
pull_request:
push:
branches:
- main
- develop
- hotfix/*

jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
steps:
- name: Get the sources
uses: actions/checkout@v2

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

- name: Install .NET Core SDK 3.1.405
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.405'

- name: Install .NET Core SDK
uses: actions/setup-dotnet@v1

- name: Run Cake script
run: |
echo ::group::".NET Tool Restore"
dotnet tool restore
echo ::endgroup::
dotnet cake --target=Pack
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: artifacts
path: artifacts
Loading

0 comments on commit abcee25

Please sign in to comment.