-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use dotnet tool manifest file for Cake.Tool
- Loading branch information
1 parent
50dca05
commit fd0d3c8
Showing
5 changed files
with
25 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,18 +29,18 @@ jobs: | |
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 3.1.101 | ||
- name: 'Dotnet Tool Restore' | ||
run: dotnet tool restore | ||
shell: pwsh | ||
- name: 'Dotnet Cake Build' | ||
uses: ecampidoglio/[email protected] | ||
with: | ||
target: Build | ||
run: dotnet cake --target=Build | ||
shell: pwsh | ||
- name: 'Dotnet Cake Test' | ||
uses: ecampidoglio/[email protected] | ||
with: | ||
target: Test | ||
run: dotnet cake --target=Test | ||
shell: pwsh | ||
- name: 'Dotnet Cake Pack' | ||
uses: ecampidoglio/[email protected] | ||
with: | ||
target: Pack | ||
run: dotnet cake --target=Pack | ||
shell: pwsh | ||
- name: 'Publish Artefacts' | ||
uses: actions/[email protected] | ||
with: | ||
|
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
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.36.0", | ||
"commands": [ | ||
"dotnet-cake" | ||
] | ||
} | ||
} | ||
} |