Skip to content

Commit 92a8f45

Browse files
committed
Use correct paths for targeted binaries on CI
1 parent 7654f8e commit 92a8f45

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ jobs:
8989
- name: Upload CLI Binaries
9090
uses: actions/upload-artifact@v6
9191
with:
92-
path: target/release/${{ matrix.cli-name }}
92+
path: target/${{ matrix.target }}/release/${{ matrix.cli-name }}
9393
name: ${{ matrix.cli-name }}-${{ matrix.target }}-${{ inputs.sha || github.sha }}
9494

9595
- name: Upload LSP Binaries
9696
uses: actions/upload-artifact@v6
9797
with:
98-
path: target/release/${{ matrix.lsp-name }}
99-
name: ${{ matrix.lsp-name }}-${{ matrix.target }}-${{ inputs.sha || github.sha }}
98+
path: target/${{ matrix.target }}/release/${{ matrix.lsp-name }}
99+
name: ${{ matrix.lsp-name }}-${{ matrix.target }}-${{ inputs.sha || github.sha }}

0 commit comments

Comments
 (0)