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:
116
116
- name : Rename output files (Linux/macOS)
117
117
if : runner.os == 'Linux' || runner.os == 'macOS'
118
118
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-}"' \;
120
120
121
121
- name : Rename output files (Windows)
122
122
if : runner.os == 'Windows'
123
123
shell : pwsh
124
124
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-' }
126
126
127
127
- name : Release Assets
128
128
uses : softprops/action-gh-release@v2
You can’t perform that action at this time.
0 commit comments