-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathaction.yml
30 lines (29 loc) · 1.25 KB
/
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: 'xcodegen'
description: 'Runs the `xcodegen generate` command'
inputs:
cache-path:
description: 'Where the cache file will be loaded from and save to. Defaults to ~/.xcodegen/cache/{SPEC_PATH_HASH}'
no-env:
description: 'Disable environment variable expansions'
only-plists:
description: 'Generate only plist files'
project:
description: 'The path to the directory where the project should be generated. Defaults to the directory the spec is in. The filename is defined in the project spec'
project-root:
description: 'The path to the project root directory. Defaults to the directory containing the project spec.'
quiet:
description: 'Suppress all informational and success output'
spec:
description: 'The path to the project spec file. Defaults to project.yml'
use-cache:
description: 'Use a cache for the xcodegen spec. This will prevent unnecessarily generating the project if nothing has changed'
version:
description: 'The version of xcodegen to be used. Check https://github.com/yonaskolb/XcodeGen/releases for valid options.'
default: latest
install:
description: 'Whether to install xcodegen or not'
run:
description: 'Whether to run xcodegen or not'
runs:
using: 'node20'
main: 'index.js'