-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
48 lines (45 loc) · 1.26 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
48
name: Version Patcher
author: Lemon
description: Patches the versions on C# (csproj VS2017+), npm (package.json), Python (setup.py) and other files
branding:
color: purple
icon: edit-3
inputs:
version:
description: The version to apply
required: true
trim:
description: If the v or V at the beginning of the version should be trimmed
required: false
default: "true"
use-tag:
description: If the tag should be used as the version number on Release
required: false
default: "false"
csproj-files:
description: The glob used to find csproj files
required: false
npm-files:
description: The glob used to find package.json files
required: false
setuppy-files:
description: The glob used to find setup.py files
required: false
pyproject-files:
description: The glob used to find pyproject.toml files
required: false
initpy-files:
description: The glob used to find __init__.py files
required: false
fxmanifest-files:
description: The glob used to find fxmanifest.lua files
required: false
gemspec-files:
description: The glob used to find .gemspec files
required: false
outputs:
version:
description: The version used to patch the files
runs:
using: node16
main: dist/index.js