Skip to content

Commit 7e7b522

Browse files
committed
we release only cli
1 parent 61d8bfd commit 7e7b522

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,14 @@ jobs:
4545
rustup default stable
4646
4747
- name: Build release binaries
48-
run: cargo build --release --locked -p layerrun-cli -p layerrun-server
48+
run: cargo build --release --locked -p layerrun-cli
4949

5050
- name: Package Unix binaries
5151
if: matrix.archive == 'tar.gz'
5252
shell: bash
5353
run: |
5454
mkdir -p dist/package
5555
cp target/release/layerrun-cli dist/package/
56-
cp target/release/layerrun-server dist/package/
5756
cp README.md dist/package/
5857
cp LICENSE* dist/package/ 2>/dev/null || true
5958
tar -czf "dist/layerrun-${{ matrix.name }}.tar.gz" -C dist/package .
@@ -64,7 +63,6 @@ jobs:
6463
run: |
6564
New-Item -ItemType Directory -Force -Path dist/package | Out-Null
6665
Copy-Item target/release/layerrun-cli.exe dist/package/
67-
Copy-Item target/release/layerrun-server.exe dist/package/
6866
Copy-Item README.md dist/package/
6967
Get-ChildItem LICENSE* -ErrorAction SilentlyContinue | Copy-Item -Destination dist/package/
7068
Compress-Archive -Path dist/package/* -DestinationPath "dist/layerrun-${{ matrix.name }}.zip"

0 commit comments

Comments
 (0)