Any suggestions on `project:deploy --dryrun` in a ...
# sdf
r
Any suggestions on
project:deploy --dryrun
in a CI/CD environment without secure storage? I tried with environment variable
SUITECLOUD_CI
, which changed the error from
Copy code
Secure storage is inaccessible. Ensure that the secure storage in your system is properly configured and accessible.
to
Copy code
The following environment variables are currently set: SUITECLOUD_CI.
The operation you are trying to perform is not allowed with the current environment variable configuration.
The normal deploy after seems to work. I'm using the
dryrun
to try and catch issues before it actually goes and touches the environment.
a
Hi, You need both environment variables: SUITECLOUD_CI SUITECLOUD_CI_PASSKEY
1
r
Thank you, it worked. I found the documentation for that, twice removed.