Files
yml/scripts/version-number.sh
DeveloperDurp 60819b8c3d Update 2 files
- /scripts/version-number.sh
- /templates/build-container.tpl.yml
2023-05-20 11:34:49 +00:00

36 lines
896 B
Bash

#!/usr/bin/env bash
#%%MULTILINE_YAML_START
#Check for configuration
echo "mode: ContinuousDeployment
continuous-delivery-fallback-tag: ''
branches:
master:
mode: ContinuousDeployment
tag: 'dev'
increment: Minor
track-merge-target: true
tracks-release-branches: true
is-release-branch: false
prevent-increment-of-merged-branch-version: false
release:
regex: release?[/]
mode: ContinuousDeployment
increment: Minor
tag: ''
is-release-branch: true
prevent-increment-of-merged-branch-version: true
feature:
regex: feature?[/]
mode: ContinuousDeployment
increment: Inherit
tag: 'alpha'
is-release-branch: false
prevent-increment-of-merged-branch-version: true
ignore:
sha: []
" > GitVersion.yml
version=$(/tools/dotnet-gitversion /showvariable NuGetVersionV2)
echo "VERSION=$version" >> version.env
cat version.env