-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
30 lines (30 loc) · 922 Bytes
/
action.yml
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
name: 'Install swift tool'
description: 'Clone and build a swift tool'
author: 'Benedek Kozma'
branding:
color: 'green'
icon: 'download'
inputs:
url:
description: 'Git URL of the tool to build'
required: true
commit:
description: 'Git commit hash to clone'
required: false
branch:
description: 'Git branch/tag to clone, overridden by commit'
required: false
version:
description: 'Version range to choose max satisfying version by, overridden by commit/branch, format: https://devhints.io/semver'
required: false
package-resolved-path:
description: 'Path for the Package.resolved file to use for resolving the version if no commit/branch/version is specified'
required: false
default: 'Package.resolved'
use-cache:
description: 'Use cache to restore/save build product'
required: false
default: 'true'
runs:
using: 'node20'
main: 'dist/index.js'