-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
968a259
commit aeb5edd
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,33 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: '3.1.x' | ||
|
||
- name: Setup Version | ||
uses: gittools/actions/gitversion/[email protected] | ||
with: | ||
versionSpec: '5.3.6' | ||
env: | ||
ACTIONS_ALLOW_UNSECURE_COMMANDS: TRUE | ||
|
||
- name: Determine Version | ||
uses: gittools/actions/gitversion/[email protected] | ||
with: | ||
useConfigFile: true | ||
env: | ||
ACTIONS_ALLOW_UNSECURE_COMMANDS: TRUE | ||
|
||
- name: get SemVer | ||
id: gitversion | ||
run: | | ||
echo "SemVer: v$($env:GitVersion_SemVer)" | ||
Write-Host "::set-output name=semver::v$($env:GitVersion_SemVer)" | ||
$fileName = "dummy-v$($env:GitVersion_SemVer)" | ||
echo "SemVerMMP: v$($env:GitVersion_MajorMinorPatch)" | ||
Write-Host "Filename: '$fileName'" | ||
- name: Setup msbuild | ||
uses: microsoft/[email protected] | ||
|