Skip to content

Commit f9545f2

Browse files
fix
1 parent 7cdbdd9 commit f9545f2

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/workflow.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)