-
Hi, When DeliverToStorage is enabled for repository it delivers artifacts after each successful build to Azure Storage Containers. Everything works fine, we can find the zipped .app files per repository in separate containers. Directories are created by version, but for some reason it also adds "preview" at the end of the directory name. Is there a way to change/disable this "preview" tag and what's the meaning behind this? Also does it mean that in folder named "preview" without any version we can find the latest build version? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Correct - after every build (if continuousDelivery is enabled), the apps in the preview container will be updated. Upon release, you will have a container with the version number and another container called latest with the latest version only way to avoid the preview folders is to disable continuousdelivery and only deliver on release. |
Beta Was this translation helpful? Give feedback.
Correct - after every build (if continuousDelivery is enabled), the apps in the preview container will be updated.
Every build will be added to it's own folder called version-preview (if continuousDelivery is enabled)
Upon release, you will have a container with the version number and another container called latest with the latest version
only way to avoid the preview folders is to disable continuousdelivery and only deliver on release.