File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -116,13 +116,13 @@ jobs:
116116 - name : Rename output files (Linux/macOS)
117117 if : runner.os == 'Linux' || runner.os == 'macOS'
118118 run : |
119- find dist-release/ -type f -name 'AigcPanelPro-*' -exec bash -c 'f="{}"; mv "$f" "${f/AigcPanelPro-/AigcPanel-}"' \;
119+ find code/ dist-release/ -type f -name 'AigcPanelPro-*' -exec bash -c 'f="{}"; mv "$f" "${f/AigcPanelPro-/AigcPanel-}"' \;
120120
121121 - name : Rename output files (Windows)
122122 if : runner.os == 'Windows'
123123 shell : pwsh
124124 run : |
125- Get-ChildItem dist-release\AigcPanelPro-* | Rename-Item -NewName { $_.Name -replace 'AigcPanelPro-','AigcPanel-' }
125+ Get-ChildItem code\ dist-release\AigcPanelPro-* | Rename-Item -NewName { $_.Name -replace 'AigcPanelPro-','AigcPanel-' }
126126
127127 - name : Release Assets
128128 uses : softprops/action-gh-release@v2
You can’t perform that action at this time.
0 commit comments