File tree 3 files changed +4
-1
lines changed
src/Cake.Frosting.PleOps.Recipe/GitHub
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,8 @@ following [project template](https://github.com/pleonex/template-csharp).
85
85
4 . Review ` build.yml ` to remove / add OS platforms to run build and tests.
86
86
5 . Enable GitHub Pages in the repository settings
87
87
1 . Select GitHub Actions as the source.
88
+ 2 . From _ Environments_ , select ` github-pages ` . Under _ Deployment branches and
89
+ tags_ add a new rule to allow publishing docs from the tags ` v* ` .
88
90
89
91
## Collaboration files
90
92
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ the current version (if any) into `ChangelogNextFile`.
46
46
- Task name: ` PleOps.Recipe.GitHub.UploadReleaseBinaries `
47
47
- Type:
48
48
[ ` UploadReleaseBinaries ` ] ( xref:Cake.Frosting.PleOps.Recipe.GitHub.UploadReleaseBinariesTask )
49
- - Depends on: none
49
+ - Depends on: [ ` RestoreTools ` ] ( ./common.md#restore-tools )
50
50
- Condition: build type is ` Stable ` and ` GitHubToken ` is not empty.
51
51
- Build context: ` PleOpsBuildContext `
52
52
- Uses:
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ namespace Cake.Frosting.PleOps.Recipe.GitHub;
30
30
/// This action only runs for stable builds if the GitHub token is present.
31
31
/// </remarks>
32
32
[ TaskName ( "PleOps.Recipe.GitHub.UploadReleaseBinaries" ) ]
33
+ [ IsDependentOn ( typeof ( Common . RestoreToolsTask ) ) ]
33
34
public class UploadReleaseBinariesTask : FrostingTask < PleOpsBuildContext >
34
35
{
35
36
/// <inheritdoc />
You can’t perform that action at this time.
0 commit comments