diff options
author | Cyborus <cyborus@cyborus.xyz> | 2024-12-10 22:38:07 +0100 |
---|---|---|
committer | Cyborus <cyborus@cyborus.xyz> | 2024-12-10 22:38:07 +0100 |
commit | 6a592b38d787c2585b6915571746067d5cff48f1 (patch) | |
tree | 41c12c73eef164fc5009984d95ace30d8b6362a2 /.woodpecker | |
parent | Merge pull request 'use `Repository::discover` instead of `open`' (#144) from... (diff) | |
download | forgejo-cli-6a592b38d787c2585b6915571746067d5cff48f1.tar.xz forgejo-cli-6a592b38d787c2585b6915571746067d5cff48f1.zip |
feat: add --verbose flag to version command
Diffstat (limited to '.woodpecker')
-rw-r--r-- | .woodpecker/deploy.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.woodpecker/deploy.yml b/.woodpecker/deploy.yml index 18f88e4..8db6d24 100644 --- a/.woodpecker/deploy.yml +++ b/.woodpecker/deploy.yml @@ -3,6 +3,8 @@ when: steps: compile-linux: image: rust:latest + environment: + BUILD_TYPE: "release ci" commands: - rustup target add x86_64-unknown-linux-gnu - cargo build --target=x86_64-unknown-linux-gnu --release --features update-check @@ -10,6 +12,8 @@ steps: secrets: [ client_info_codeberg ] compile-windows: image: rust:latest + environment: + BUILD_TYPE: "release ci" commands: - rustup target add x86_64-pc-windows-gnu - apt update |