Skip to content

comment

comment #15

Workflow file for this run

create-release:
runs-on: ubuntu-latest
# Use a container with GLIBC 2.17
container: quay.io/pypa/manylinux2014_x86_64
steps:
- name: Show GLIBC
run: ldd --version
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --manifest-path cli/Cargo.toml
- name: Upload binary
uses: actions/upload-artifact@4
with:
name: cli-tool
path: cli