We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbb530e commit f06dbc2Copy full SHA for f06dbc2
.github/workflows/deploy-code.yml
@@ -25,7 +25,14 @@ jobs:
25
26
- name: Extract Repo Name
27
id: repo_name
28
- run: echo "repo_name=$(echo '${{ github.repository }}' | cut -d '/' -f 2)" >> $GITHUB_OUTPUT
+ 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
35
+ Rename-Item -Path ./src/ -NewName ${{ steps.repo_name.outputs.repo_name }} -Force
36
37
- name: Publish PowerShell
38
uses: natescherer/[email protected]
0 commit comments