1
0
Fork 0
mirror of https://github.com/rharkor/caching-for-turbo.git synced 2025-06-09 09:35:17 +09:00
caching-for-turbo/action.yml
2024-06-23 15:08:36 +02:00

22 lines
534 B
YAML

name: '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/setup/index.js
post: dist/post/index.js