Skip to content

Commit b713b0f

Browse files
🩹 [Patch]: Remove unused inputs from Build-Module workflow and update CI workflow to reflect changes
1 parent 00e3235 commit b713b0f

File tree

3 files changed

+4
-26
lines changed

3 files changed

+4
-26
lines changed

‎.github/workflows/Build-Module.yml‎

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,11 @@ on:
77
type: string
88
description: The name of the module to process. Scripts default to the repository name if nothing is specified.
99
required: false
10-
Debug:
11-
type: boolean
12-
description: Enable debug output.
13-
required: false
14-
default: false
15-
Verbose:
16-
type: boolean
17-
description: Enable verbose output.
18-
required: false
19-
default: false
20-
Version:
10+
ArtifactName:
2111
type: string
22-
description: Specifies the version of the GitHub module to be installed. The value must be an exact version.
23-
required: false
24-
default: ''
25-
Prerelease:
26-
type: boolean
27-
description: Whether to use a prerelease version of the 'GitHub' module.
12+
description: Name of the artifact to upload.
2813
required: false
29-
default: false
14+
default: module
3015
WorkingDirectory:
3116
type: string
3217
description: The working directory where the script will run from.
@@ -50,4 +35,5 @@ jobs:
5035
uses: PSModule/Build-PSModule@v4
5136
with:
5237
Name: ${{ inputs.Name }}
38+
ArtifactName: ${{ inputs.ArtifactName }}
5339
WorkingDirectory: ${{ inputs.WorkingDirectory }}

‎.github/workflows/CI.yml‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,6 @@ jobs:
8787
- Get-Settings
8888
with:
8989
Name: ${{ fromJson(needs.Get-Settings.outputs.Settings).Name }}
90-
Debug: ${{ inputs.Debug }}
91-
Prerelease: ${{ inputs.Prerelease }}
92-
Verbose: ${{ inputs.Verbose }}
93-
Version: ${{ inputs.Version }}
9490
WorkingDirectory: ${{ inputs.WorkingDirectory }}
9591

9692
Build-Docs:

‎.github/workflows/workflow.yml‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,6 @@ jobs:
8989
- Get-Settings
9090
with:
9191
Name: ${{ fromJson(needs.Get-Settings.outputs.Settings).Name }}
92-
Debug: ${{ inputs.Debug }}
93-
Prerelease: ${{ inputs.Prerelease }}
94-
Verbose: ${{ inputs.Verbose }}
95-
Version: ${{ inputs.Version }}
9692
WorkingDirectory: ${{ inputs.WorkingDirectory }}
9793

9894
Build-Docs:

0 commit comments

Comments
 (0)