Skip to content

Commit 36327ec

Browse files
committed
fix: upload
1 parent 8c2df1e commit 36327ec

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -106,17 +106,12 @@ jobs:
106106
working-directory: client-rs
107107
target: ${{ matrix.platform.target }}
108108
args: "--locked --release"
109-
strip: true
110-
111-
- run:
112-
ls -l client-rs
113-
ls -l client-rs/target/release/
114109

115110
- name: Upload Binaries
116111
uses: actions/upload-artifact@v4
117112
with:
118113
name: client-rs-${{ matrix.platform.target }}
119-
path: client-rs/target/release/client-rs*
114+
path: client-rs/target/${{ matrix.platform.target }}/release/client-rs*
120115

121116
- name: Release
122117
if: ${{ startsWith(github.ref, 'refs/tags/') }}
@@ -130,7 +125,7 @@ jobs:
130125
name: ${{ github.ref_name }}
131126
tag_name: ${{ github.ref_name }}
132127
files: |
133-
client-rs/target/release/client-rs*
128+
client-rs/target/${{ matrix.platform.target }}/release/client-rs*
134129
135130
release-server:
136131
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)