fix(deploy): features are overriden by the workflows
This commit is contained in:
parent
715c49640f
commit
fc15e89e80
|
@ -63,6 +63,9 @@ on:
|
|||
log_file:
|
||||
default: ''
|
||||
description: 'Log to a file path rather than standard output'
|
||||
docker_features:
|
||||
default: 'default-release-binaries'
|
||||
description: 'Features to build the Zebra binary with'
|
||||
|
||||
push:
|
||||
# Skip main branch updates where Rust code and dependencies aren't modified.
|
||||
|
@ -157,6 +160,7 @@ jobs:
|
|||
image_name: zebrad
|
||||
no_cache: ${{ inputs.no_cache || false }}
|
||||
rust_log: info
|
||||
features: ${{ inputs.docker_features || 'default-release-binaries' }}
|
||||
# This step needs access to Docker Hub secrets to run successfully
|
||||
secrets: inherit
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#
|
||||
# Keep these argument defaults in sync with GitHub vars.RUST_PROD_FEATURES and vars.RUST_TEST_FEATURES
|
||||
# https://github.com/ZcashFoundation/zebra/settings/variables/actions
|
||||
ARG FEATURES="default-release-binaries internal-miner"
|
||||
ARG FEATURES="default-release-binaries"
|
||||
ARG TEST_FEATURES="lightwalletd-grpc-tests zebra-checkpoints"
|
||||
ARG EXPERIMENTAL_FEATURES=""
|
||||
|
||||
|
|
Loading…
Reference in New Issue