Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit cfd446e

Browse files
committed
mv command fix
1 parent 78e5415 commit cfd446e

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,17 @@ jobs:
3131
- name: Build binaries
3232
run: pkg ./dist/main.js
3333

34-
- name: Renave linux binary
35-
run: mv ./dist/main-linux ./autoadmin-cli-linux
34+
- name: Ls project
35+
run: ls
36+
37+
- name: Rename linux binary
38+
run: mv /dist/main-linux /autoadmin-cli-linux
3639

37-
- name: Renave macos binary
38-
run: mv ./dist/main-macos ./autoadmin-cli-macos
40+
- name: Rename macos binary
41+
run: mv /dist/main-macos /autoadmin-cli-macos
3942

40-
- name: Renave windows binary
41-
run: mv ./dist/main-win.exe ./autoadmin-cli-windows.exe
43+
- name: Rename windows binary
44+
run: mv /dist/main-win.exe /autoadmin-cli-windows.exe
4245

4346
- name: Publish release
4447
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)