File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change 13
13
build :
14
14
runs-on : ubuntu-latest
15
15
env :
16
- GITHUB_USERNAME : ${{ github.repository_owner }}
17
16
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
18
17
steps :
19
18
-
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public override bool ShouldRun(BuildContext context)
34
34
{
35
35
var shouldRun = true ;
36
36
shouldRun &= context . ShouldRun ( context . DirectoryExists ( Paths . Docs ) , "Wyam documentation directory is missing" ) ;
37
- shouldRun &= context . ShouldRun ( context . IsStableRelease || context . IsPreRelease , $ "{ nameof ( PublishDocs ) } works only for releases.") ;
37
+ shouldRun &= context . ShouldRun ( context . IsStableRelease || context . IsPreRelease || context . ForcePublish , $ "{ nameof ( PublishDocs ) } works only for releases.") ;
38
38
39
39
return shouldRun ;
40
40
}
You can’t perform that action at this time.
0 commit comments