Hello,
I have a project implementing a lifecycle that consists of three phases (QA, UAT, and PROD). Sometimes each phase has a different file path for the package to be deployed too (sometimes QA and UAT are on the same machine, but uses different file paths for the installation). However, I do not see any place where I can specify the file path based on the phase the current package is being deployed too.
Right now, I have a single step in the project. The step uses the “custom install directory” feature and I reference a variable here. I have a total of three variables setup for the project (one for each phase of the lifecycle). I can try setting up multiple steps in the project and using each variable in each step, but when the release is deployed to UAT, then it will run the first step which uses the QA file path, and then correctly run the second step which installs in the UAT directory, and then incorrectly run the third step which installs the release to the PROD directory (if all three phases uses the same machine).
How can I specify a directory per phase in the lifecycle?
Please help!