Skip to content

Commit

Permalink
CI: upload server binary
Browse files Browse the repository at this point in the history
  • Loading branch information
samcowger committed Nov 11, 2024
1 parent e8bf959 commit 6567e04
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/server-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,18 @@ jobs:
run: |
eval $(opam env)
dune test
- name: Install server
# if: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
working-directory: ./cn-lsp/server
run: |
eval $(opam env)
dune install
- name: Upload server binary
# if: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
working-directory: ./cn-lsp/server
uses: actions/upload-artifact@v4
with:
name: cn-lsp-server-${{ matrix.os }}
path: _build/install/default/bin/cn-lsp-server

0 comments on commit 6567e04

Please sign in to comment.