Skip to content

Commit abcaf67

Browse files
Add initial implementation of PSModule with supporting files and configurations
1 parent 5fe14db commit abcaf67

39 files changed

+2
-14
lines changed

.github/workflows/Action-Test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ jobs:
3232
uses: actions/upload-artifact@v4
3333
with:
3434
name: module
35-
path: tests/outputs/modules
35+
path: tests/srcTestRepo/outputs/module
3636
if-no-files-found: error
3737
retention-days: 1
3838

3939
- name: Action-Test
4040
uses: ./
4141
with:
4242
Name: PSModuleTest
43-
Path: tests/src
44-
ModulesOutputPath: tests/outputs/modules
45-
DocsOutputPath: tests/outputs/docs
43+
Path: tests/srcTestRepo

action.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,6 @@ inputs:
1313
description: Path to the folder where the modules are located.
1414
required: false
1515
default: src
16-
ModulesOutputPath:
17-
description: Path to the folder where the built modules are outputted.
18-
required: false
19-
default: outputs/modules
20-
DocsOutputPath:
21-
description: Path to the folder where the built docs are outputted.
22-
required: false
23-
default: outputs/docs
2416
Debug:
2517
description: Enable debug output.
2618
required: false
@@ -45,8 +37,6 @@ runs:
4537
env:
4638
GITHUB_ACTION_INPUT_Name: ${{ inputs.Name }}
4739
GITHUB_ACTION_INPUT_Path: ${{ inputs.Path }}
48-
GITHUB_ACTION_INPUT_ModulesOutputPath: ${{ inputs.ModulesOutputPath }}
49-
GITHUB_ACTION_INPUT_DocsOutputPath: ${{ inputs.DocsOutputPath }}
5040
with:
5141
Debug: ${{ inputs.Debug }}
5242
Prerelease: ${{ inputs.Prerelease }}

tests/outputs/modules/PSModuleTest/PSModuleTest.psd1 renamed to tests/srcTestRepo/outputs/modules/PSModuleTest/PSModuleTest.psd1

File renamed without changes.

tests/outputs/modules/PSModuleTest/PSModuleTest.psm1 renamed to tests/srcTestRepo/outputs/modules/PSModuleTest/PSModuleTest.psm1

File renamed without changes.

tests/outputs/modules/PSModuleTest/assemblies/LsonLib.dll renamed to tests/srcTestRepo/outputs/modules/PSModuleTest/assemblies/LsonLib.dll

File renamed without changes.

tests/outputs/modules/PSModuleTest/data/Config.psd1 renamed to tests/srcTestRepo/outputs/modules/PSModuleTest/data/Config.psd1

File renamed without changes.

tests/outputs/modules/PSModuleTest/data/Settings.psd1 renamed to tests/srcTestRepo/outputs/modules/PSModuleTest/data/Settings.psd1

File renamed without changes.

tests/outputs/modules/PSModuleTest/formats/CultureInfo.Format.ps1xml renamed to tests/srcTestRepo/outputs/modules/PSModuleTest/formats/CultureInfo.Format.ps1xml

File renamed without changes.

tests/outputs/modules/PSModuleTest/formats/Mygciview.Format.ps1xml renamed to tests/srcTestRepo/outputs/modules/PSModuleTest/formats/Mygciview.Format.ps1xml

File renamed without changes.

tests/outputs/modules/PSModuleTest/modules/OtherPSModule.psm1 renamed to tests/srcTestRepo/outputs/modules/PSModuleTest/modules/OtherPSModule.psm1

File renamed without changes.

0 commit comments

Comments
 (0)