forked from GitTools/actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
27 lines (26 loc) · 841 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
name: gitversion-setup
description: GitHub Action for Easy Semantic Versioning with GitVersion. Installs the specific version of GitVersion tool
author: GitTools
branding:
color: gray-dark
icon: git-pull-request
runs:
using: node20
main: 'main.mjs'
inputs:
versionSpec:
description: Required version in the form of 6.1.x or exact version like 6.1.0
required: true
default: ''
includePrerelease:
description: Include pre-release versions when matching a version
required: false
default: 'false'
ignoreFailedSources:
description: Treat package source failures as warnings.
required: false
default: 'false'
preferLatestVersion:
description: Prefer to download the latest version matching the versionSpec, even if there is a local cached version.
required: false
default: 'false'