diff --git a/.woodpecker.yml b/.woodpecker.yml index 9f0a6d7..cba1e64 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -10,10 +10,15 @@ steps: commands: - wget https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz - tar -xvf cargo-binstall-x86_64-unknown-linux-musl.tgz - - ./cargo-binstall -y trunk + - mv cargo-binstall .cargo_home/bin/ + - export PATH="$PATH:.cargo_home/bin/" + - cargo binstall -y trunk - trunk build --release - cargo build --release - ls -la target/release/ibis + - cp target/release/ibis . + - gzip ibis + - ls -la ibis.gz cargo_fmt: image: *rust_image