You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# VERSION format is major.minor.patch-post where major, minor, patch and post are integer numbers
3
+
# bump post to deploy to the current live Release, rollback to previous post version is not available
4
+
# bump patch or minor to deploy a new Release and auto-promote it to live. Add TB_AUTO_PROMOTE=0 to create the Release in preview status
5
+
# bump major to deploy a new Release in preview status
6
+
VERSION=0.0.0
7
+
8
+
9
+
10
+
##########
11
+
# OPTIONAL env vars
12
+
# Deploy a new Release in preview status (default is 1)
13
+
# TB_AUTO_PROMOTE=0
14
+
15
+
# Check if deploy requires backfilling on preview (default is 1)
16
+
# TB_CHECK_BACKFILL_REQUIRED=0
17
+
18
+
# Force old Releases deletion on promote (default is 0)
19
+
# Setting it to 1 will remove oldest rollback Releases even when some resource is still in use
20
+
# TB_FORCE_REMOVE_OLDEST_ROLLBACK=0
21
+
22
+
# Don't print CLI version warning message if there's a new available version
23
+
# TB_VERSION_WARNING=0
24
+
25
+
# Skip regression tests
26
+
# TB_SKIP_REGRESSION=0
27
+
28
+
# Use `OBFUSCATE_REGEX_PATTERN` and `OBFUSCATE_PATTERN_SEPARATOR` environment variables to define a regex pattern and a separator (in case of a single string with multiple regex) to obfuscate secrets in the CLI output.
29
+
# OBFUSCATE_REGEX_PATTERN="https://(www\.)?[^/]+||^Follow these instructions =>"
0 commit comments