7985732683
* chore: Delete cache-build cache entries on PR close Co-Authored-By: keith@cal.com <keithwillcode@gmail.com> * refactor: Extract cache-build key generation into reusable action - Create .github/actions/cache-build-key to generate cache keys - Update cache-build action to use the shared key action - Update delete workflow to use the shared key action - Checkout PR head SHA in delete workflow for correct hash computation Co-Authored-By: keith@cal.com <keithwillcode@gmail.com> * fix: Remove PR head SHA checkout per review feedback Co-Authored-By: keith@cal.com <keithwillcode@gmail.com> * refactor: Use prefix-based cache deletion for simpler cleanup - Use useblacksmith/cache-delete prefix mode to delete all caches matching branch - Remove dependency on cache-build-key action for deletion - No checkout needed since we're just using the branch name as prefix Co-Authored-By: keith@cal.com <keithwillcode@gmail.com> * refactor: Simplify cache key by removing Linux and node version segments Co-Authored-By: keith@cal.com <keithwillcode@gmail.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
26 lines
763 B
YAML
26 lines
763 B
YAML
name: Cache production build binaries
|
|
description: "Cache or restore if necessary"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Generate cache key
|
|
id: cache-key
|
|
uses: ./.github/actions/cache-build-key
|
|
with:
|
|
branch_key: ${{ github.head_ref || github.ref_name }}
|
|
- name: Cache production build
|
|
uses: actions/cache@v4
|
|
id: cache-build
|
|
with:
|
|
path: |
|
|
${{ github.workspace }}/apps/web/.next
|
|
${{ github.workspace }}/apps/web/public/embed
|
|
**/.turbo/**
|
|
**/dist/**
|
|
key: ${{ steps.cache-key.outputs.key }}
|
|
- run: |
|
|
export NODE_OPTIONS="--max_old_space_size=8192"
|
|
yarn build
|
|
if: steps.cache-build.outputs.cache-hit != 'true'
|
|
shell: bash
|