From 35f09121074b8c056ee68d5e394845f96eccb542 Mon Sep 17 00:00:00 2001 From: Cyborus Date: Mon, 24 Jun 2024 20:17:28 -0400 Subject: [PATCH] chore: enable `update-check` feature in CI builds --- .woodpecker/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker/deploy.yml b/.woodpecker/deploy.yml index 739cdf8..6a67372 100644 --- a/.woodpecker/deploy.yml +++ b/.woodpecker/deploy.yml @@ -5,7 +5,7 @@ steps: image: rust:latest commands: - rustup target add x86_64-unknown-linux-gnu - - cargo build --target=x86_64-unknown-linux-gnu --release + - cargo build --target=x86_64-unknown-linux-gnu --release --feature update-check - strip target/x86_64-unknown-linux-gnu/release/fj secrets: [ client_info_codeberg ] compile-windows: @@ -14,7 +14,7 @@ steps: - rustup target add x86_64-pc-windows-gnu - apt update - apt install gcc-mingw-w64-x86-64 -y - - cargo build --target=x86_64-pc-windows-gnu --release + - cargo build --target=x86_64-pc-windows-gnu --release --feature update-check - strip target/x86_64-pc-windows-gnu/release/fj.exe secrets: [ client_info_codeberg ] zip: