We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1de4bed + f43091c commit f190f89Copy full SHA for f190f89
.github/workflows/reusable_build.yml
@@ -53,6 +53,11 @@ on:
53
required: false
54
default: ""
55
type: string
56
+ cargo_ledger_build_args:
57
+ description: "Additional arguments to pass to the cargo ledger build command for Rust applications"
58
+ required: false
59
+ default: ""
60
+ type: string
61
62
jobs:
63
call_get_app_metadata:
@@ -100,7 +105,7 @@ jobs:
100
105
cargo +$RUST_NIGHTLY update $crate
101
106
fi
102
107
done
103
- cargo ledger build ${BUILD_DEVICE_NAME} && \
108
+ cargo ledger build ${BUILD_DEVICE_NAME} -- ${{inputs.cargo_ledger_build_args}} && \
104
109
binary_path=$(cargo metadata --no-deps --format-version 1 | jq -r '.target_directory')/ && \
110
echo "binary_path=$binary_path" >> $GITHUB_OUTPUT && \
111
echo "binary_path=$binary_path" && \
0 commit comments