btcpayserver/publish-docker.ps1

7 lines
228 B
PowerShell
Raw Normal View History

2017-09-29 08:05:18 +02:00
$ver = [regex]::Match((Get-Content BTCPayServer\BTCPayServer.csproj), '<Version>([^<]+)<').Groups[1].Value
git tag -a "v$ver" -m "$ver"
2018-03-26 04:54:10 +02:00
git push --tags
git tag -d "stable"
git tag -a "stable" -m "stable"
git push --tags --force