File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ jobs:
100100 WorkingDirectory : ${{ inputs.WorkingDirectory }}
101101
102102 Build-Module :
103+ if : ${{ fromJson(needs.Get-Settings.outputs.Settings).Build.Module.Skip != true }}
103104 uses : ./.github/workflows/Build-Module.yml
104105 needs :
105106 - Get-Settings
@@ -112,6 +113,7 @@ jobs:
112113 WorkingDirectory : ${{ inputs.WorkingDirectory }}
113114
114115 Build-Docs :
116+ if : ${{ fromJson(needs.Get-Settings.outputs.Settings).Build.Docs.Skip != true }}
115117 needs :
116118 - Get-Settings
117119 - Build-Module
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ jobs:
100100 WorkingDirectory : ${{ inputs.WorkingDirectory }}
101101
102102 Build-Module :
103+ if : ${{ fromJson(needs.Get-Settings.outputs.Settings).Build.Module.Skip != true }}
103104 uses : ./.github/workflows/Build-Module.yml
104105 needs :
105106 - Get-Settings
@@ -112,6 +113,7 @@ jobs:
112113 WorkingDirectory : ${{ inputs.WorkingDirectory }}
113114
114115 Build-Docs :
116+ if : ${{ fromJson(needs.Get-Settings.outputs.Settings).Build.Docs.Skip != true }}
115117 needs :
116118 - Get-Settings
117119 - Build-Module
You can’t perform that action at this time.
0 commit comments