-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (29 loc) · 759 Bytes
/
action.yml
File metadata and controls
31 lines (29 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
name: 'Mage Action'
description: 'GitHub Action for Mage, a Make/rake-like build tool using Go'
author: 'crazy-max'
branding:
color: 'purple'
icon: 'settings'
inputs:
version:
description: 'Mage version.'
default: 'latest'
required: false
args:
description: 'Arguments to pass to Mage'
required: false
workdir:
description: 'Working directory (below repository root)'
required: false
install-only:
description: 'Just install Mage'
default: 'false'
required: false
cache-binary:
description: 'Cache binary to GitHub Actions cache backend'
default: 'true'
required: false
runs:
using: 'node24'
main: 'dist/index.js'