426edce485
* feat: update to use node20 Signed-off-by: Rui Chen <rui@chenrui.dev> * chore: bump to use `actions/checkout` v4 (node20 runtime) Signed-off-by: Rui Chen <rui@chenrui.dev> * exclude node_modules * Rebuild --------- Signed-off-by: Rui Chen <rui@chenrui.dev> Co-authored-by: Renée Kooi <renee@kooi.me>
19 lines
465 B
YAML
19 lines
465 B
YAML
name: 'Setup Zig'
|
|
description: 'Setup a Zig compiler and add it to the path'
|
|
branding:
|
|
icon: play
|
|
color: orange
|
|
author: 'goto-bus-stop'
|
|
inputs:
|
|
version:
|
|
description: 'Version of the zig compiler to use (must be 0.3.0 or up)'
|
|
required: true
|
|
default: 'master'
|
|
cache:
|
|
description: 'Cache downloaded compilers for faster action runs. Strongly recommended.'
|
|
required: false
|
|
default: 'true'
|
|
runs:
|
|
using: 'node20'
|
|
main: 'dist/index.js'
|