Skip to content

Commit 148959c

Browse files
Updated example
1 parent c14138e commit 148959c

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,15 @@ jobs:
4747
with:
4848
path: MySuperModule # Custom path for the checkout
4949

50-
- name: Download PowerShell Manifest
51-
uses: actions/download-artifact@v2
50+
- name: Create PowerShell Manifest
51+
uses: your-username/your-repo@v1 # Replace with your repository details for the createpowershellmanifest action
5252
with:
53-
name: your-module-manifest
54-
path: ${{ github.workspace }}/artifacts/your-module
53+
ModuleName: 'your-module'
54+
Source: 'MySuperModule' # Use the custom path here
55+
Debug: 'true'
5556

56-
- name: Build PowerShell Module
57-
uses: your-username/your-repo@v1 # Replace with your repository details
57+
- name: Create PowerShell Module
58+
uses: your-username/your-repo@v1 # Replace with your repository details for the createpowershellmodule action
5859
with:
5960
ModuleName: 'your-module'
6061
Source: 'MySuperModule' # Use the custom path here

0 commit comments

Comments
 (0)