@@ -61,7 +61,7 @@ webapp:
6161` ` ` bash
6262helm upgrade -n trigger --install trigger \
6363 oci://ghcr.io/triggerdotdev/charts/trigger \
64- --version "~4.0.0-beta " \
64+ --version "~4.0.0" \
6565 --create-namespace
6666```
6767
@@ -107,11 +107,11 @@ The following commands will display the default values:
107107``` bash
108108# Specific version
109109helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
110- --version " 4.0.0-beta. 5"
110+ --version " 4.0.5"
111111
112- # Latest v4 beta
112+ # Latest v4
113113helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
114- --version " ~4.0.0-beta "
114+ --version " ~4.0.0"
115115```
116116
117117### Custom values
@@ -171,7 +171,7 @@ Deploy with your custom values:
171171` ` ` bash
172172helm upgrade -n trigger --install trigger \
173173 oci://ghcr.io/triggerdotdev/charts/trigger \
174- --version "~4.0.0-beta " \
174+ --version "~4.0.0" \
175175 --create-namespace \
176176 -f values-custom.yaml
177177```
@@ -489,14 +489,14 @@ You can lock versions in two ways:
489489# Pin to a specific version for production
490490helm upgrade -n trigger --install trigger \
491491 oci://ghcr.io/triggerdotdev/charts/trigger \
492- --version "4.0.0-beta. 5"
492+ --version "4.0.5"
493493
494494# The app version will be different from the chart version
495495# This is the version of the Trigger.dev webapp and supervisor
496496# ..and should always match your Trigger.dev CLI version
497497helm show chart \
498498 oci://ghcr.io/triggerdotdev/charts/trigger \
499- --version "4.0.0-beta. 5" | grep appVersion
499+ --version "4.0.5" | grep appVersion
500500` ` `
501501
502502**Specific image tags:**
0 commit comments