Skip to content

Commit 001f85e

Browse files
committed
Fix binary path
1 parent 7041916 commit 001f85e

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,11 @@ jobs:
1616
with:
1717
command: build
1818
args: --release
19-
- name: Pwd ls
20-
run: |
21-
pwd
22-
ls
23-
ls target
2419
- name: Upload artifact
2520
uses: actions/upload-artifact@v1
2621
with:
2722
name: linux64.bin
28-
path: target/rust-deploy-test
23+
path: target/release/rust-deploy-test
2924
build_mac:
3025
name: Build macOS x86_64
3126
runs-on: macos-latest
@@ -45,10 +40,10 @@ jobs:
4540
uses: actions/upload-artifact@v1
4641
with:
4742
name: macos.bin
48-
path: target/rust-deploy-test
43+
path: target/release/rust-deploy-test
4944
build_win:
5045
name: Build Windows x64
51-
runs-on: windowsw-latest
46+
runs-on: windows-latest
5247
steps:
5348
- name: Checkout
5449
uses: actions/checkout@v2
@@ -65,7 +60,7 @@ jobs:
6560
uses: actions/upload-artifact@v1
6661
with:
6762
name: windows.bin
68-
path: target/rust-deploy-test.exe
63+
path: target/release/rust-deploy-test.exe
6964
release:
7065
name: Make release
7166
needs: [build_linux, build_mac, build_win]

0 commit comments

Comments
 (0)