titletext | description |
---|---|
Use secure files for file-based secrets; passwords, API tokens, etc. |
Store secrets such as API Keys and passwords in secure files that are not checked into your repository, but are available during the build.
|
Secure files allow you to specify API keys, access tokens, or other secrets that your build requires, without having them checked into your repository.
Secure files are made available during a build to any process that can use them, including custom build steps.
Your secure files are automatically consumed by tools that are expecting them.
If you would like to access them in your custom build scripts, use the bash variable expansion syntax.
./Example.framework/run ${BUDDYBUILD_SECURE_FILES}/file.txt
That’s it! For more details, refer to our SDK API guide.