Skip to content

Commit 8509d37

Browse files
milldrosterman
andauthored
DEV-2295: Prerelease Improvements (#630)
* Update Terraform documentation formatting * Update cache key for restoring cache in all jobs * merge frontmatter tags * added all chatgpt generated tags * Add layers, providers, and components metadata * added all chatgpt generated tags * Update variables and dependencies in Terraform documentation * Add PyYAML 6.0.1 to requirements.txt * Add function to get Terraform version from module * Update function call to use local function for Terraform version * Apply suggestions from code review Co-authored-by: Erik Osterman (CEO @ Cloud Posse) <erik@cloudposse.com> * Refactor Terraform module documentation rendering * Add conditional caching based on label presence --------- Co-authored-by: Erik Osterman (CEO @ Cloud Posse) <erik@cloudposse.com>
1 parent 50fee74 commit 8509d37

File tree

9 files changed

+773
-145
lines changed

9 files changed

+773
-145
lines changed

.github/actions/build-website/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,13 @@ runs:
5555
cache: 'pip'
5656

5757
- name: Cache rendered content
58+
if: ${{ !contains(github.event.*.labels.*.name, 'no-cache') }}
5859
uses: actions/cache@v4
5960
with:
6061
path: |
6162
.build-harness
6263
.cache
63-
key: ${{ github.workflow }}
64+
key: "build-website-cache" # Set same key to restore cache in all jobs
6465

6566
- name: "Initialize Build Harness"
6667
shell: bash

0 commit comments

Comments
 (0)