-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
27 lines (27 loc) · 839 Bytes
/
action.yml
File metadata and controls
27 lines (27 loc) · 839 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
name: "git-that-semver"
description: "Generates build version numbers and metadata based on your git repository state"
branding:
icon: "tag"
color: "blue"
inputs:
env:
description: "Uses the env output to create individual outputs"
default: "true"
json:
description: "Writes JSON result to GTS_JSON output if enabled"
default: "false"
yaml:
description: "Writes YAML result to GTS_YAML output if enabled"
default: "false"
args:
description: "Additional CLI arguments (e.g. -e npm -e java -c ...)"
default: ""
outputs:
GTS_JSON:
description: "git-that-semver result in JSON format (if enabled)"
GTS_YAML:
description: "git-that-semver result in YAML format (if enabled)"
runs:
using: "docker"
image: "docker://ghcr.io/maff/git-that-semver:1"
entrypoint: "/entrypoint-action.sh"