From a33376f85e21688395c5b29ac3b8c2c922299d05 Mon Sep 17 00:00:00 2001 From: Christopher Hunter Date: Mon, 3 Jul 2023 12:45:36 -0700 Subject: [PATCH] improve documentation for caching compiled releases --- TILE_AUTHOR_GUIDE.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/TILE_AUTHOR_GUIDE.md b/TILE_AUTHOR_GUIDE.md index 4500d313f..1d23c6fc4 100644 --- a/TILE_AUTHOR_GUIDE.md +++ b/TILE_AUTHOR_GUIDE.md @@ -289,7 +289,7 @@ artifactory_password: some-password _WORK IN PROGRESS EXAMPLE_ -``` +```sh # create a tile with the releases you want compiled kiln bake @@ -306,7 +306,13 @@ om upload-product --product=tile.pivotal om configure-product --config=simple_config.yml om apply-changes --product-name=my-tile-name +# Download Compiled BOSH Releases from the BOSH Director and Upload them to the S3 Bucket or Artifactory kiln cache-compiled-releases --upload-target-id=my_compiled_release_bucket --name=hello + +# Commit and push the changes to Kilnfile.lock +git add -p Kilnfile.lock +git commit -m 'compile BOSH Releases' +git push origin HEAD ``` ### Temporary BOSH Release Tarball Locking