feat(check-store): enable stamp caching (#247)

This commit is contained in:
Damien Retzinger
2026-05-09 16:24:21 -04:00
committed by GitHub
parent 0cbc4297b1
commit 59f87b6b2e
2 changed files with 43 additions and 9 deletions
+10
View File
@@ -20,6 +20,12 @@ on:
default: ""
description: "If provided, download store files from this artifact instead of using actions/checkout."
stamp:
type: boolean
required: false
default: false
description: "Cache the vendor/ directory in addition to the Composer download cache."
secrets:
composer_auth:
required: false
@@ -79,6 +85,8 @@ jobs:
- uses: graycoreio/github-actions-magento2/cache-magento@main
with:
composer_cache_key: ${{ inputs.composer_cache_key }}
working-directory: ${{ steps.setup-magento.outputs.path }}
stamp: ${{ inputs.stamp }}
- name: Composer install
working-directory: ${{ steps.setup-magento.outputs.path }}
@@ -138,6 +146,8 @@ jobs:
- uses: graycoreio/github-actions-magento2/cache-magento@main
with:
composer_cache_key: ${{ inputs.composer_cache_key }}
working-directory: ${{ steps.setup-magento.outputs.path }}
stamp: ${{ inputs.stamp }}
- name: Composer install
working-directory: ${{ steps.setup-magento.outputs.path }}