diff options
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 |