Find out how to use the gitversion/setup action using the examples below.
The examples use version 0.9.7 of the GitVersion Execute action. It is recommended to use the latest released version in your own workflows.
The Setup GitVersion action accepts the following inputs:
versionSpec:
description: Required version in the form of 5.x or exact version like 5.0.0.
required: true
default: ''
includePrerelease:
description: Include pre-release versions when matching a version.
required: false
default: false
Install the latest GitVersion 5 version.
steps:
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: '5.x'
Install GitVersion 5.5.0.
steps:
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: '5.5.0'
Install the latest GitVersion 6 pre-release version. For example 6.0.0-beta1.1.
steps:
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: '6.x'
includePrerelease: true