File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 2525
2626 - name : Extract Repo Name
2727 id : repo_name
28- run : echo "repo_name=$(echo '${{ github.repository }}' | cut -d '/' -f 2)" >> $GITHUB_OUTPUT
28+ run : |
29+ echo "repo_name=$(echo '${{ github.repository }}' | cut -d '/' -f 2)" >> $GITHUB_OUTPUT
30+ echo ${{ steps.repo_name.outputs.repo_name }}
31+
32+ - name : Rename 'src' to Module Name
33+ shell : pwsh
34+ run : |
35+ Rename-Item -Path ./src/ -NewName ${{ steps.repo_name.outputs.repo_name }} -Force
2936
3037 - name : Publish PowerShell
3138 uses :
natescherer/[email protected]
Original file line number Diff line number Diff line change 1212RootModule = ' PSSWAPI.psm1'
1313
1414# Version number of this module.
15- ModuleVersion = ' 0.1.1 '
15+ ModuleVersion = ' 0.1.2 '
1616
1717# Supported PSEditions
1818# CompatiblePSEditions = @()
You can’t perform that action at this time.
0 commit comments