We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30d58f5 commit 3f49701Copy full SHA for 3f49701
1 file changed
docs/commands/env.md
@@ -21,3 +21,15 @@ All commands for pipeline.
21
22
## Update Environment Variable
23
`bb env update-variable <env-uuid> <var-uuid> <key> <value> <secured: 0>` Updates an environment variable.
24
+
25
+## Example
26
+```bash
27
+env-update() {
28
+ bb env update-variable \
29
+ '{XXXX-YYYY-XXXX-YYYY-environment-uuid}' \
30
+ '{XXXX-YYYY-XXXX-YYYY-variable-uuid}' \
31
+ ENV \
32
+ "$(cat ~/Code/project/.env| base64)" \
33
+ 1
34
+}
35
+```
0 commit comments