mirror of
https://github.com/rharkor/caching-for-turbo.git
synced 2025-06-08 01:37:01 +09:00
22 lines
544 B
YAML
22 lines
544 B
YAML
name: 'Set up GitHub Actions caching for Turborepo'
|
|
description:
|
|
'Sets up Turborepo Remote Caching to work with GitHub Actions built-in cache.
|
|
No Vercel account access tokens needed.'
|
|
author: 'HUORT Louis'
|
|
|
|
# Add your action's branding here. This will appear on the GitHub Marketplace.
|
|
branding:
|
|
icon: 'upload-cloud'
|
|
color: 'blue'
|
|
|
|
# Define your inputs here.
|
|
inputs:
|
|
cache-prefix:
|
|
description: 'Prefix for the cache key'
|
|
required: false
|
|
default: turbogha_
|
|
|
|
runs:
|
|
using: node20
|
|
main: dist/index.js
|
|
post: dist/post.js
|