summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCyborus <cyborus@cyborus.xyz>2024-08-08 02:40:22 +0200
committerCyborus <cyborus@cyborus.xyz>2024-08-08 02:40:22 +0200
commitd3b7e4dacedd1fe536cfe0a8dc0bf4941ceb5778 (patch)
tree84fc9737066e809493837227a04d944cabaac553
parentMerge pull request 'add wiki commands' (#105) from wiki into main (diff)
downloadforgejo-cli-d3b7e4dacedd1fe536cfe0a8dc0bf4941ceb5778.tar.xz
forgejo-cli-d3b7e4dacedd1fe536cfe0a8dc0bf4941ceb5778.zip
ci: `--features` flag, not `--feature`
-rw-r--r--.woodpecker/deploy.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.woodpecker/deploy.yml b/.woodpecker/deploy.yml
index 6a67372..18f88e4 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 --feature update-check
+ - cargo build --target=x86_64-unknown-linux-gnu --release --features 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 --feature update-check
+ - cargo build --target=x86_64-pc-windows-gnu --release --features update-check
- strip target/x86_64-pc-windows-gnu/release/fj.exe
secrets: [ client_info_codeberg ]
zip: