forked from orange-cloudfoundry/bosh-release-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
47 lines (45 loc) · 1.66 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# action.yml
name: "bosh-releaser"
description: "Creates new version of bosh release"
inputs:
repository:
description: "Github repository used to publish releases."
required: false
default: ${{github.repository}}
token:
description: "Github token used to push changes after releasing"
required: false
default: ${{github.token}}
target_branch:
description: "Branch name to push release commit"
required: false
default: master
tag_name:
required: false
description: "Tag name used to create the bosh release. Leave it empty to autodetect"
override_existing:
description: "override existing tag or release"
required: false
default: "false"
dir:
description: "Release directory path if not current working directory (default: .)"
default: "."
force_version_consistency:
description: "Ensure output tagged_version and version are always identical, using version as source. Otherwise, 'tagged_version' starts with 'v' prefix.Default: false"
required: false
default: "false"
debug:
description: "Set to 1 to enable debug mode"
default: "0"
outputs:
file:
description: "generated bosh release filename"
version:
description: "version of the generated bosh release"
tagged_version:
description: "Only set when a final release is created, otherwise it is empty. It matches 'version', but always starts with 'v'"
need_gh_release:
description: "Do we need to create a github release associated to this bosh release"
runs:
using: "docker"
image: "Dockerfile" # We should be able to use this action without explict commit using 'orangecloudfoundry/create-bosh-release-action@master'