File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,17 @@ jobs:
2222 os :
2323 - name : linux
2424 runner : ubuntu-latest
25+ ext : " "
2526 - name : windows
2627 runner : windows-latest
28+ ext : " .exe"
2729 - name : macos
2830 runner : macos-latest
31+ ext : " "
2932 steps :
3033 - name : Install missing OS dependencies for Linux
31- if : ${{ matrix.os.name == 'linux' }}
32- run : sudo apt update && sudo apt install libssl-dev
34+ if : ${{ matrix.os.name == 'linux' && matrix.arch == 'arm64' }}
35+ run : sudo apt update && sudo apt install -y gcc-aarch64-linux-gnu
3336 - name : Checkout
3437 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3538 with :
6366 uses : svenstaro/upload-release-action@v2
6467 with :
6568 tag : ${{ inputs.version }}
66- file : checkout-tag/target/${{ steps.rust-target.outputs.target }}/release/elasticsearch-core-mcp-server
67- asset_name : elasticsearch-core-mcp-server.${{ inputs.version }}.${{ matrix.os.name }})-${{ matrix.arch }}
69+ file : checkout-tag/target/${{ steps.rust-target.outputs.target }}/release/elasticsearch-core-mcp-server${{ matrix.os.ext }}
70+ asset_name : elasticsearch-core-mcp-server.${{ inputs.version }}.${{ matrix.os.name }})-${{ matrix.arch }}${{ matrix.os.ext }}
6871 overwrite : true
You can’t perform that action at this time.
0 commit comments